xxxxxxxxxx
56
function setup() {
createCanvas(400, 400);
}
function draw() {
background(253, 205, 233);
fill(0)
circle(178, 160, 50);
circle(186, 198, 60);
circle(186, 238, 75);
circle(40, 159, 50);
circle(30, 199, 60);
circle(30, 235, 75);
fill(175, 114, 69);
circle(110, 200, 130);
fill(0)
circle(110, 125, 55);
circle(150, 132, 50);
circle(70, 131, 50);
fill(175, 114, 69);
triangle(98, 215, 110, 200, 122, 215)
fill(0)
arc(100, 225, 80, 50, 0, HALF_PI);
fill(240, 238, 236)
ellipse(135, 185, 35, 25)
ellipse(85, 185, 35, 25)
fill(0)
ellipse(135, 185, 15, 10)
ellipse(85, 185, 15, 10)
fill(240, 238, 236);
triangle(250, 230, 210, 240, 230, 215)
ellipse(300, 150, 200, 185)
fill(236, 8, 209)
stroke(0)
text("hello world!", 225, 160)
textSize(30)
}