xxxxxxxxxx
16
let w = 20;
let h = 20;
function setup() {
createCanvas(800, 800);
frameRate(10);
}
function draw() {
background(255);
for (let y = h; y < height; y = y + 20){
for (let x = w; x< width; x = x+ 20){
fill(0, 200, random(50), random(200));
ellipse (x, y, w, w,);
}
}
}