xxxxxxxxxx
19
let cDiam = 25;
let xOffset = 50;
let xSpacing = 50;
let yPos = 200;
function setup() {
createCanvas(windowWidth, windowHeight);
noLoop();
}
function draw() {
background(220, 0, 150);
for (let xPos = xOffset; xPos <= width - xOffset; xPos += xSpacing) {
ellipse(xPos, yPos, cDiam);
}
}