xxxxxxxxxx
45
class Mover {
constructor(x, y, m) {
this.position = createVector(x, y);
this.velocity = createVector(0, 0);
this.acceleration = createVector(0, 0);
this.mass = m;
this.r = sqrt(this.mass) * 20;
}
applyForce(force) {
let f = p5.Vector.div(force, this.mass);
this.acceleration.add(f);
}
edges() {
if (this.position.y >= height-this.r) {
this.position.y = height- this.r ;
this.velocity.y *= -1;
}
if (this.position.x >= width-this.r) {
this.position.x = width-this.r ;
this.velocity.x *= -1;
}
if (this.position.x <= this.r) {
this.position.x = this.r;
this.velocity.x *= -1;
}
}
update() {
this.velocity.add(this.acceleration);
this.position.add(this.velocity);
this.acceleration.set(0, 0); //resetting acceleration to zero at every fraame
}
display() {
stroke(0);
strokeWeight(2);
fill(127);
ellipse(this.position.x, this.position.y, this.r * 2);
}
}