xxxxxxxxxx
18
let x = 0;
let y= 25;
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
}
function draw() {
let r= random(255);
let g= 0;
let b= random(255);
for(mouseIsPressed==true; x<=windowWidth; x+=25){
fill(r, g, b);
circle(x, y, 25);
}
}