xxxxxxxxxx
29
function setup() {
createCanvas(windowWidth, windowHeight);
angleMode(DEGREES);
bg = 255;
background(bg);
strokeWeight(4);
noFill();
stroke(0);
rect(50, height-100, width-100, 80);
noStroke();
fill(255, 0, 0);
for(i=0; i<(width-100)/20-1; i++) {
thisColor = color(random(255), random(255), random(255));
fill(thisColor);
noStroke();
rect(54+i*20, height-98, 17, 76);
for(j=0; j<3; j++) {
stroke(thisColor);
line(56+i*20+j*6, height-104, 56+i*20+j*6, random(height-154));
}
}
}
function draw() {
}