xxxxxxxxxx
25
var x =0;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(100,200,200);
noStroke();
fill(200,200,100);
arc(200,200,150,150,0, PI);
fill(200,100,200);
triangle(200,100,50,200,350,200);
fill(210,180,180);
triangle(200,120,70,210,320,210);
fill(170,170,270,150);
arc(200,200,159,159,180,PI)
fill(180,320,180);
rect(1,300,399,100);
fill(110,300,190);
ellipse(200,350,180,80);
fill(130,300,200);
ellipse(200,350,160,60);
}