Class: Ball

Ball(x, y, vx, vy, r)

Ball() Class representing a Ball

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.
Source:

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.
Source:

draw()

Draws a white ellipse at the Balls position on the canvas
Source:

getSpeed() → {number}

Gets the speed of the ball.
Source:
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
Source:

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
Source:

setX(newX)

Sets the x position of the ball
Parameters:
Name Type Description
newX number The new x position of the ball
Source:

setY(newY)

Sets the y position of the ball
Parameters:
Name Type Description
newY number The new y position of the ball
Source:

update()

Applies the velocity to the Ball.
Source:

Documentation generated by JSDoc 3.6.3 on Sat Jul 02 2022 09:28:00 GMT+0100 (BST)