xxxxxxxxxx
42
let dandelion;
var angle = 0;
function setup() {
createCanvas(600, 600);
angleMode(DEGREES);
}
function draw() {
background("#B5D3E7");
translate(width/2, width/2); //this is where i want the rectangle to rotate from which is the center
rectMode(CENTER);
for(let i = 0; i < 45; i++) { //25 rectangles for the dandelion
dandelion = new Dandelion(5); //the argument is the width of the rectangle
dandelion.show();
dandelion.move();
}
}
class Dandelion {
constructor(w) {
this.x = 0;
this.y = 0;
this.height = 600;
this.width = w;
}
move() {
rotate(angle);
angle += 0.0007
}
show() {
fill(255);
stroke("#45b3e0");
rect(this.x, this.y, this.height, this.width);
}
}