xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw() {
background(0);
let r = 100;
for(var i=0;i<10;i++){
print(i)
fill(i*10,255,255)
ellipse(i*mouseX,height/2,100-i*5)
}
}