xxxxxxxxxx
39
function setup() {
createCanvas(700, 600);
}
function draw() {
background(220);
noStroke();
for (let x = 50; x < width; x += 100) {
for (let y = 50; y < height; y += 100) {
rectMode(CENTER);
fill(
random(500),
random(500),
random(500),
)
rect( x, y, 100, 100);
push();
translate(x, y);
rotate(random(TWO_PI));
fill('hotpink');
ellipse(0, 0, 50);
fill('rgb17,187,242');
ellipse(10, -10, 10);
ellipse(-10, -10, 10);
pop();
}
}
noLoop();
}