new PIXI.RoundedRectangle(x, y, width, height, radius)
The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its top-left corner point (x, y) and by its width and its height and its radius.
Name | Type | Description |
---|---|---|
x |
number |
The X coordinate of the upper-left corner of the rounded rectangle |
y |
number |
The Y coordinate of the upper-left corner of the rounded rectangle |
width |
number |
The overall width of this rounded rectangle |
height |
number |
The overall height of this rounded rectangle |
radius |
number |
Controls the radius of the rounded corners |
Members
-
heightnumber
-
- Default Value:
- 0
-
radiusnumber
-
- Default Value:
- 20
-
typenumber
-
The type of the object, mainly used to avoid
instanceof
checks -
widthnumber
-
- Default Value:
- 0
-
xnumber
-
- Default Value:
- 0
-
ynumber
-
- Default Value:
- 0
Methods
-
Creates a clone of this Rounded Rectangle
Returns:
Type Description PIXI.RoundedRectangle a copy of the rounded rectangle -
contains(x, y){boolean}
-
Checks whether the x and y coordinates given are contained within this Rounded Rectangle
Name Type Description x
number The X coordinate of the point to test
y
number The Y coordinate of the point to test
Returns:
Type Description boolean Whether the x/y coordinates are within this Rounded Rectangle