xxxxxxxxxx
function setup() {
// Create the canvas
createCanvas(windowWidth, windowHeight);
background(0);
ellipseMode(CENTER);
// Set colors
noFill();
stroke(100);
for (let i = 0; i < width/150; i ++) {
ellipse(width/2, height/2, width/5*i, width/2);
ellipse(width/2, height/2, width/1.25, height/5*i );
;
}
}