<static> inflatePoint(a, point) → {Phaser.Rectangle}
Increases the size of the Rectangle object. This method is similar to the Rectangle.inflate() method except it takes a Point object as a parameter.
Parameters
Name | Type | Description |
---|---|---|
a | Phaser.Rectangle | The Rectangle object. |
point | Phaser.Point | The x property of this Point object is used to increase the horizontal dimension of the Rectangle object. The y property is used to increase the vertical dimension of the Rectangle object. |
Returns
The Rectangle object.
- Source code: geom/Rectangle.js (Line 780)
Please login to continue.