xxxxxxxxxx
21
// if class name is Blob, it create error of CreateVector not defined.
class Meta {
constructor(x, y) {
this.pos = createVector(x, y);
this.vel = p5.Vector.random2D();
this.vel.mult(random(2, 5));
this.r = random(10, 20);
}
update() {
this.pos.add(this.vel);
if (this.pos.x > width || this.pos.x < 0) {
this.vel.x *= -1;
}
if (this.pos.y > height || this.pos.y < 0) {
this.vel.y *= -1;
}
}
}