xxxxxxxxxx
48
function setup() {
createCanvas(400, 500);
}
function draw() {
background('lightBlue');
stroke('black');
strokeWeight(1);
fill(202,102,72)
rect(150,310,90,200);
fill('white');
rect(150,220,90,90)
fill(202,102,72)
rect(160,160,70,60)
stroke('white')
strokeWeight(7);
fill(90,179,131);
triangle(163,160,227,160,200,10);
strokeWeight(3);
line(163,170,225,170);
line(163,215,225,215);
line(163,170,163,215);
line(225,170,225,215);
stroke('black')
strokeWeight(1);
fill(120,143,150);
rect(150,287,90,10);
fill('lightBlue');
rect(158, 250, 15, 30);
rect(178, 250, 15, 30);
rect(198, 250, 15, 30);
rect(218, 250, 15, 30);
fill('black');
stroke('white');
strokeWeight(5);
rect(160, 320, 10, 20);
rect(160, 380, 10, 20);
rect(160, 440, 10, 20);
}