xxxxxxxxxx
15
function setup() {
createCanvas(500, 500);
}
function draw() {
frameRate(5)
for(let i = 0; i < 100; i++) {
colorMode(HSL,360);
fill(200,random(360),mouseX);
ellipse(random(500), random(500), random(100),random(100));
}
// background(220);
}