xxxxxxxxxx
function setup(){
createCanvas(windowWidth, windowHeight);
background(0);
noStroke();
for(let i=0; i<1500; i++){
let x = random(width);
let y = random(height);
fill(random(255),random(255),random(255),255);
rect(x,y,1,random(height)*1.5);
}
for(let i=0; i<1500; i++){
let x = random(width);
fill(random(255),random(255),random(255),255);
rect(x,0,1,random(height)/1.5);
}
for(let i=0; i<10; i++){
fill(0);
rect(random(width),0,random(30),height);
}
}