xxxxxxxxxx
20
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
noFill();
strokeWeight(2);
for (let x=50 ; x<=350 ; x+=100){
stroke(random(255),random(255),random(255));
for (let y=50 ; y<=350 ; y+=100){
stroke(random(255),random(255),random(255));
for (let s=10; s<=100 ; s+=10){
stroke(random(255),random(255),random(255))
rect(x,y,s,s)
rectMode(CENTER)
}
}
}
}