xxxxxxxxxx
26
function setup() {
createCanvas(400, 400);
}
function draw() {
noStroke();
background(255, 255, 200);
// START END INCREMENT
for (let x = 0; x < 200; x = x + 20) {
fill(0, 0, 255)
for (let y = 40; y < 400; y = y + 20) {
ellipse(x, y, 10, 10);
} // end y loop
} // end x loop
}