xxxxxxxxxx
18
let x0 = 100; let y0 = 100;
let spacing = 50;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
for (let i=0; i<5; i++){
for (let j=0; j<3; j++){
fill(0);
ellipse(x0 + i*spacing, y0 + j*spacing, 50, 50);
}
}
}