Constructor
new Ball(x, y, vx, vy, r)
Create a Ball
Parameters:
Name | Type | Description |
---|---|---|
x |
number | The initial x location of the Ball. |
y |
number | The initial y location of the Ball. |
vx |
number | The initial x velocity of the Ball. |
vy |
number | The initial y velocity of the Ball. |
r |
number | The radius of the Ball. |
Methods
checkEdges()
Checks to see if the Ball has left the boundaries of the canvas. If
they have the ball will bounce back with 90% of it's original speed.
draw()
Draws a white ellipse at the Balls position on the canvas
getSpeed() → {number}
Gets the speed of the ball.
Returns:
The speed.
- Type
- number
setVelX(newVelX)
Sets the x component of the velocity of the ball.
Parameters:
Name | Type | Description |
---|---|---|
newVelX |
number | The new x velocity of the ball |
setVelY(newVelY)
Sets the y component of the velocity of the ball.
Parameters:
Name | Type | Description |
---|---|---|
newVelY |
number | The new y velocity of the ball |
setX(newX)
Sets the x position of the ball
Parameters:
Name | Type | Description |
---|---|---|
newX |
number | The new x position of the ball |
setY(newY)
Sets the y position of the ball
Parameters:
Name | Type | Description |
---|---|---|
newY |
number | The new y position of the ball |
update()
Applies the velocity to the Ball.