xxxxxxxxxx
55
class Planes extends p5.Vector{
constructor(x, y, r) {
super(x, y);
this.vel = p5.Vector.random2D();
this.vel.mult(2);
this.acc = createVector(0, 0);
this.r = r;
this.lifespan = 1;
this.col = color(random(0, 360), 100, 100);
this.a = 0;
this.velA = 0.1;
this.accA = 0;
}
show() {
noStroke();
fill(this.col);
this.col.setAlpha(this.lifespan);
push();
translate(this.x, this.y);
this.a = this.vel.heading();
rotate(this.a);
triangle(0, 0, this.r * 2, this.r / 2, 0, this.r);
pop();
}
finished(){
return (this.lifespan < 0);
}
update() {
this.vel = p5.Vector.fromAngle(this.a);
this.add(this.vel);
this.acc.set(0, 0);
this.lifespan -= 0.005;
}
edge() {
if (this.x > width) {
this.x = 0;
} else if (this.x < 0) {
this.x = width;
}
if (this.y > height) {
this.y = 0;
} else if (this.y < 0) {
this.y = height;
}
}
}