xxxxxxxxxx
22
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
stroke(255);
noFill();
for (let y=50; y < height; y += 50) {
for (let x=50; x < width; x += 50) {
if (x % 100 == 0) {
fill(255, 0, 0);
} else {
fill(255);
}
ellipse(x, y, 50);
}
}
}