xxxxxxxxxx
30
function setup() {
createCanvas(400, 400);
fill(54)
rectMode(CENTER);
noFill()
}
function draw(){
background("#ACD7EC");
translate(width/2, height/2);
for (let i = 0; i < 8; i++) {
push();
rotate(TWO_PI * i / 8);
let tx = 200 * noise(0.01*frameCount);
translate(tx, 0);
rect(0, 0, 20, 20);
for (let j = 0; j < 6; j++) {
push();
rotate(TWO_PI * j / 6);
let rx = 60 * noise(0.01*frameCount + 10);
rect(rx, 0, 8, 8);
pop();
}
pop();
}
}