Class: Paddle

Paddle()

Paddle () This class describes a paddle as controlled by a player to bounce the ball.

Constructor

new Paddle()

Constructs a new instance of Paddle.
Source:

Methods

checkEdges()

A function to check if the paddle has gone off the edge of the screen. Stops the paddle at the edge of the screen once it goes goes past the boundaries.
Source:

draw()

A function to draw the paddle on the canvas.
Source:

isHitBy(ball)

Determines whether the paddle is hit by the ball. If it is it will reposition the ball so that it hasn't gone beyond the top surface of the paddle. The angle the ball leaves the paddle is determined by the position it strikes the paddle. This goes from -45 to 45 degrees.
Parameters:
Name Type Description
ball Ball The ball object
Source:
Example
let xDiff = this.x + this.w / 2 - ball.x;
 let angle = map(xDiff,
     -this.w/2, this.w/2,
     QUARTER_PI, -QUARTER_PI);

moveLeft()

A function to move the paddle to the left
Source:

moveRight()

A function to move the paddle to the right
Source:

setX(newX)

Sets the x position of the paddle. Will limit the movement of the paddle to Paddle.dx which is the maximum distanced the paddle can move in the x direction.
Parameters:
Name Type Description
newX number The new x position of the paddle
Source:

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