xxxxxxxxxx
35
function setup() {
createCanvas(320, 320);
}
function draw() {
noStroke();
background("black");
rect(120,110, 210, 140);
fill("orange");
rect(160,70, 130, 50);
fill("orange");
rect(190,40, 70, 50);
fill("orange");
rect(150,250, 50, 70);
fill("orange");
rect(120,290, 30, 30);
fill("orange");
rect(150,250, 30, 70);
fill("orange");
rect(240,290, 30, 30);
fill("orange");
rect(270,250, 50, 70);
fill("orange");
}