xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
for(let i = 0;i<200;i++)
{
fill(random(128,255), random(128,255), random(128,255));
rect(random(width),random(height),80, 20);
}
}
function draw() {
//ellipse(mouseX, mouseY, 20, 20);
}