xxxxxxxxxx
let ypos = 0;
function setup() {
createCanvas(windowWidth, windowHeight);
colorMode(HSB, 100, 100, 100, 1.0);
background(0, 0, 85, 1.0);
}
function draw() {
ellipse((.1 * windowWidth), ypos, 20,20);
ellipse((.15 * windowWidth), ypos, 20,20);
ellipse((.2 * windowWidth), ypos, 20,20);
ellipse((.25 * windowWidth), ypos, 20,20);
ellipse((.3 * windowWidth), ypos, 20,20);
ellipse((.35 * windowWidth), ypos, 20,20);
ellipse((.2 * windowWidth), ypos, 20,20);
ellipse((.3 * windowWidth), ypos, 20,20);
ellipse((.4 * windowWidth), ypos, 20,20);
ellipse((.5 * windowWidth), ypos, 20,20);
//ellipse((. * windowWidth), ypos, 20,20);
ypos = ypos+50;
}