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