xxxxxxxxxx
20
class Walker {
constructor(x, y) {
this.pos = createVector(x, y);
this.vel = createVector(1, -1);
}
show() {
stroke(255);
strokeWeight(2);
fill(255, 100);
ellipse(this.pos.x, this.pos.y, 32);
// point(this.pos.x, this.pos.y);
}
update() {
this.pos.add(this.vel); // a.add(b);
// this.pos.x += this.vel.x;
// this.pos.y += this.vel.y;
}
}