xxxxxxxxxx
21
function setup() {
createCanvas(600, 400);
}
function draw() {
background(0);
stroke(255);
strokeWeight(4);
x = 0;
y = 0;
for (x = 0; x <= width; x += 50) {
for (y = 0; y <= height; y += 50) {
fill(random(255), random(255), 0);
ellipse(x, y, 25, 25);
}
}
}