xxxxxxxxxx
22
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
fill(153, 102, 0);
triangle(0,0,100,0,0,200);
fill(153, 102, 0);
triangle(400,0,300,0,400,200);
fill(255, 80, 80);
arc(200, 250, 80, 100, 0,3.14);
fill(1);
line(100, 150, 200, 150);
circle(100, 150, 50);
line(300, 150, 300, 200);
fill(204, 51, 0);
circle(300, 150, 50);
}