xxxxxxxxxx
30
function setup() {
createCanvas(400, 600);
}
function draw() {
frameRate(2);
background(random(105),mouseX,mouseY);
noStroke();
fill(129, 132, 133,50);
rect(210,320,90,150,10);//second
rect(200,30,5,80);//top point
rect(70,460,160,140,10);//bottom
rect(180,440,150,170,10);//bottom
rect(100,350,140,130,10);//second
rect(140,250,80,130,10);//third
rect(175,200,90,125,10);//third
rect(165,140,40,115,10);//fourth
rect(180,110,55,115,10);
}