- Source:
Methods
(static) degreesToRadians(angleInDegrees) → {number}
Helper to convert degrees to radians.
Parameters:
Name | Type | Description |
---|---|---|
angleInDegrees |
number | The angle represented as degrees. |
- Source:
Returns:
The angle represented as radians.
- Type
- number
(static) prepareAngle(angle) → {number}
Prepares an angle to be drawn.
Parameters:
Name | Type | Description |
---|---|---|
angle |
number | The angle to be prepared. |
- Source:
Returns:
The prepared angle.
- Type
- number
(static) radiansToDegrees(angleInRadians) → {number}
Helper to convert radians to degrees.
Parameters:
Name | Type | Description |
---|---|---|
angleInRadians |
number | The angle represented as radians. |
- Source:
Returns:
The angle represented as degrees.
- Type
- number
containsPoint(x, y) → {boolean}
Check if a given point is within the Thing.
This function only works in subclasses of Thing.
Parameters:
Name | Type | Description |
---|---|---|
x |
number | The x coordinate of the point being checked. |
y |
number | The y coordinate of the point being checked. |
- Inherited From:
- Source:
Returns:
Whether the point x, y is within the Thing.
- Type
- boolean
draw(__graphics__)
Draws the arc in the canvas.
Parameters:
Name | Type | Description |
---|---|---|
__graphics__ |
CodeHSGraphics | Instance of the __graphics__ module. |
- Overrides:
- Source:
getBorderColor() → {Color}
Gets the border color of a Thing.
- Inherited From:
- Source:
Returns:
The color of the Thing's border.
- Type
- Color
getBorderWidth() → {number}
Gets the width of the Thing's border.
- Inherited From:
- Source:
Returns:
The width of the Thing's border.
- Type
- number
getColor() → {Color}
Gets the color of a Thing.
- Inherited From:
- Source:
Returns:
The destination y coordinate of this Thing.
- Type
- Color
getType() → {type}
Returns the type of a Thing.
- Inherited From:
- Source:
Returns:
The type of the Thing.
- Type
- type
getX() → {number}
Gets the x position of the Thing.
- Inherited From:
- Source:
Returns:
The x position of the Thing.
- Type
- number
getY() → {number}
Gets the y position of the Thing.
- Inherited From:
- Source:
Returns:
The y position of the Thing.
- Type
- number
hasBorder() → {boolean}
Returns if a Thing has a border.
- Inherited From:
- Source:
Returns:
True if the Thing has a border.
- Type
- boolean
isFilled() → {boolean}
Returns if a Thing is filled.
- Inherited From:
- Source:
Returns:
True if the Thing is filled.
- Type
- boolean
move(dx, dy)
Changes the possition of a thing by a specified x and y amount.
Parameters:
Name | Type | Description |
---|---|---|
dx |
number | The resulting change in the Thing's x position. |
dy |
number | The resulting change in the Thing's y position. |
- Inherited From:
- Source:
rotate(degrees, angleUnit)
Rotates a Thing an additional amount of degrees.
Parameters:
Name | Type | Description |
---|---|---|
degrees |
number | The degrees to rotate degrees. |
angleUnit |
number | Whether it is degrees or radians. Defaults to degrees. |
- Inherited From:
- Source:
setBorder(hasBorder)
Sets a Thing object to filled.
Throws an error if an argument is not passed.
Parameters:
Name | Type | Description |
---|---|---|
hasBorder |
bool | A boolean of whether or not Thing has a border. |
- Inherited From:
- Source:
setBorderColor(color)
Sets the border color of a Thing.
Throws an error if there are fewer than 1 params or if
the param is undefined.
Parameters:
Name | Type | Description |
---|---|---|
color |
Color | The resulting color of the Thing's border. |
- Inherited From:
- Source:
setBorderWidth(width)
Sets the width of a Thing's border.
Throws an error if there is not 1 argument.
Parameters:
Name | Type | Description |
---|---|---|
width |
number | The resulting width of the Thing's border. |
- Inherited From:
- Source:
setColor(color)
Sets the color of a Thing.
Throws an error if there are fewer than 1 params or if
the param is undefined.
Parameters:
Name | Type | Description |
---|---|---|
color |
Color | The resulting color of Thing. |
- Inherited From:
- Source:
setFilled(filled)
Sets a Thing object to filled.
Throws an error if an argument is not passed.
Parameters:
Name | Type | Description |
---|---|---|
filled |
bool | A boolean of whether or not Thing is filled. |
- Inherited From:
- Source:
setPosition(x, y)
Sets the position of a Thing.
Throws an error if there are fewer than 2 params or if
they are not numbers.
Parameters:
Name | Type | Description |
---|---|---|
x |
number | The destination x coordinate of this Thing. |
y |
number | The destination y coordinate of this Thing. |
- Inherited From:
- Source:
setRotation(degrees, angleUnit)
Sets the rotation of a Thing in degrees.
Throws an error if there are fewer than 1 params or if they
are not numbers.
Parameters:
Name | Type | Description |
---|---|---|
degrees |
number | The degrees to rotate degrees. |
angleUnit |
number | Whether it is degrees or radians. Defaults to degrees. |
- Inherited From:
- Source:
setType(type)
Sets a Thing object's type.
Questionable of whether or not this method is used.
Parameters:
Name | Type | Description |
---|---|---|
type |
type | A type to set the Thing to. |
- Inherited From:
- Source: