xxxxxxxxxx
15
function setup() {
createCanvas(windowWidth, windowHeight);
noFill();
noLoop();
}
function draw() {
background(220, 20, 120);
for (let i = 0; i < width / 4; i++) {
let rDiam = randomGaussian(0, width / 3);
ellipse(width / 2, height / 2, rDiam);
}
}