xxxxxxxxxx
25
function setup() {
createCanvas(windowWidth, windowHeight);
noLoop();
}
function draw() {
background(220, 0, 150);
ellipse(50, height / 2, 25);
ellipse(100, height / 2, 25);
ellipse(150, height / 2, 25);
ellipse(200, height / 2, 25);
ellipse(250, height / 2, 25);
ellipse(300, height / 2, 25);
ellipse(350, height / 2, 25);
ellipse(400, height / 2, 25);
}