xxxxxxxxxx
25
function setup() {
createCanvas(400, 400);
}
function draw() {
background(217, 217, 217);
strokeWeight(1);
stroke(242, 124, 56);
fill(0, 63, 99);
triangle(0, 0, 0, 50, 50, 0);
fill(217, 76, 26)
triangle(400, 0, 400, 50, 350, 0);
fill(242, 177, 56)
circle(130, 200, 250);
fill(161, 165, 166)
circle(260, 200, 250);
fill(87, 82, 62)
rect(100, 380, 200, 10);
noStroke();
noFill();
arc(50, 55, 60, 60, HALF_PI, PI);
}