xxxxxxxxxx
37
class Particle extends p5.Vector {
constructor(x, y) {
super(x,y);
this.vel = p5.Vector.random2D();
this.vel.mult(random(0.5, 2));
this.acc = createVector(0, 0);
this.r = 10;
this.lifetime = 1000;
}
finished() {
return this.lifetime < 0;
}
applyForce(force) {
this.acc.add(force);
}
update() {
this.vel.add(this.acc);
this.add(this.vel);
this.acc.set(0, 0);
this.lifetime -= 5;
}
show() {
stroke(50, this.lifetime);
strokeWeight(2);
fill(50, this.lifetime);
ellipse(this.x, this.y, this.r * 2);
}
}