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