xxxxxxxxxx
28
function setup() {
createCanvas(400, 400);
background(220);
boxes();
}
function draw() {
}
function boxes(){
max = height-60;
for(i = width; i >= 0; i -= 3){
gVal = random(0,255);
rVal = random(0,255);
bVal = random(0,255);
fill(color(rVal,gVal,bVal));
randomY = random(max-30, max+30);
max = randomY;
rect(0,0,i,randomY);
}
}
function mouseClicked(){
boxes();
}