xxxxxxxxxx
20
let rectDim = 40;
function setup() {
createCanvas(400, 400);
// noLoop();
frameRate(4);
}
function draw() {
background(220);
noStroke();
for(let j = 0; j < 10; j++) {
for(let i = 0; i < 10; i++) {
fill(random(255), random(255), random(255));
rect(i * rectDim, j * rectDim, rectDim, rectDim);
}
}
}