Name | Type | Default | Description |
---|---|---|---|
x |
number | 0 |
The X coordinate of the center of this circle |
y |
number | 0 |
The Y coordinate of the center of this circle |
radius |
number | 0 |
The radius of the circle |
Implements
Members
The radius of the circle
- Default Value:
- 0
type SHAPE_PRIMITIVE readonly
The type of the object, mainly used to avoid instanceof
checks
- Default Value:
- 'circle'
The X coordinate of the center of this circle
- Default Value:
- 0
The Y coordinate of the center of this circle
- Default Value:
- 0
Methods
Creates a clone of this Circle instance
Returns:
Type | Description |
---|---|
Circle | A copy of the Circle |
Checks whether the x and y coordinates given are contained within this circle
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 Circle |
Copies another circle to this one.
Name | Type | Description |
---|---|---|
circle |
Circle |
The circle to copy from. |
Returns:
Type | Description |
---|---|
this | Returns itself. |
Copies this circle to another one.
Name | Type | Description |
---|---|---|
circle |
Circle |
The circle to copy to. |
Returns:
Type | Description |
---|---|
Circle | Returns given parameter. |
Returns the framing rectangle of the circle as a Rectangle object
Name | Type | Attributes | Description |
---|---|---|---|
out |
Rectangle |
<optional> |
Returns:
Type | Description |
---|---|
Rectangle | The framing rectangle |
Checks whether the x and y coordinates given are contained within this circle including the stroke.
Name | Type | Default | Description |
---|---|---|---|
x |
number |
The X coordinate of the point to test |
|
y |
number |
The Y coordinate of the point to test |
|
width |
number |
The width of the line to check |
|
alignment |
number | 0.5 |
The alignment of the stroke, 0.5 by default |
Returns:
Type | Description |
---|---|
boolean | Whether the x/y coordinates are within this Circle |