xxxxxxxxxx
31
class Ball {
constructor(tempX, tempY, tempXspeed, tempYspeed) {
this.x = tempX;
this.y = tempY;
this.xspeed = tempXspeed;
this.yspeed = tempYspeed;
}
move() {
this.x = this.x + this.xspeed;
this.y = this.y + this.yspeed;
}
display() {
stroke(255);
strokeWeight(4);
fill(200, 0, 200);
ellipse(this.x, this.y, 70, 70);
}
bounce() {
if (this.x > width || this.x < 0) {
this.xspeed = this.xspeed * -1;
}
if (this.y > height || this.y < 0) {
this.yspeed = this.yspeed * -1;
}
}
}