xxxxxxxxxx
17
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
var x = 0;
var y = 0;
while (y < height) {
while (x < width) {
ellipse(x + 50, y + 50, 50);
x = x + 75;
}
y = y + 75;
x = 0;
}
}