The Rounded Rectangle object is an area defined by its position and has nice rounded corners,
as indicated by its top-left corner point (x, y) and by its width and its height.
Name | Type | Argument | Default | Description |
---|---|---|---|---|
x | number | <optional> | 0 | The x coordinate of the top-left corner of the Rectangle. |
y | number | <optional> | 0 | The y coordinate of the top-left corner of the Rectangle. |
width | number | <optional> | 0 | The width of the Rectangle. Should always be either zero or a positive value. |
height | number | <optional> | 0 | The height of the Rectangle. Should always be either zero or a positive value. |
radius | number | <optional> | 20 | Controls the radius of the rounded corners. |
The height of the Rectangle. This value should never be set to a negative.
The radius of the rounded corners.
The const type of this object.
The width of the Rectangle. This value should never be set to a negative.
The x coordinate of the top-left corner of the Rectangle.
The y coordinate of the top-left corner of the Rectangle.
Returns a new RoundedRectangle object with the same values for the x, y, width, height and
radius properties as this RoundedRectangle object.
Determines whether the specified coordinates are contained within the region defined by this Rounded Rectangle object.
Name | Type | Description |
---|---|---|
x | number | The x coordinate of the point to test. |
y | number | The y coordinate of the point to test. |
A value of true if the RoundedRectangle Rectangle object contains the specified point; otherwise false.
© 2016 Richard Davey, Photon Storm Ltd.
Licensed under the MIT License.
http://phaser.io/docs/2.6.2/Phaser.RoundedRectangle.html