xxxxxxxxxx
44
class Rectangle {
constructor(x,y,vel) {
this.x = x;
this.y = y;
this.vel = vel;
this.angle = 0;
this.color = color(random(255),random(255),random(255));
}
draw() {
push();
fill(this.color);
translate(this.x,this.y);
rotate(this.angle);
rect(0,0,100,50);
pop();
this.angle += this.vel;
}
}
let rectangles = [];
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
rectMode(CENTER);
for (let i=0; i<20; i++) {
r = new Rectangle(random(width), random(height), random(-8,8));
rectangles.push(r);
}
}
function draw() {
background(220);
for (let i=0; i<20; i++) {
rectangles[i].draw();
}
}