xxxxxxxxxx
18
function setup() {
createCanvas(400, 400);
background(220);
noStroke();
rectRect();
}
function draw() {}
function rectRect() {
for (let x = 0; x < 100; x += 20) {
for (let y = 0; y < 100; y += 20) {
fill(random(100,255),random(100,255),random(100,255));
rect(x , y , random(20, 50), random(20,50));
}
}
}