xxxxxxxxxx
function setup() {
createCanvas(400, 400);
background(250);
}
function draw() {
noStroke();
fill(250, 160, 160);
ellipse(200, 200, 200, 250);
ellipse(200, 250, 250, 200);
//head
fill(0);
rect(140, 150, 5, 30);
rect(150, 150, 5, 20);
rect(160, 150, 5, 20);
rect(170, 150, 5, 30);
rect(220, 150, 5, 30);
rect(230, 150, 5, 20);
rect(240, 150, 5, 20);
rect(250, 150, 5, 30);
//eyelashes
fill(0);
ellipse(160, 200, 50, 70);
ellipse(240,200,50,70);
fill(250);
ellipse(160, 200, 45, 65);
ellipse(240, 200, 45, 65);
fill(0);
ellipse(170, 200, 20, 25);
ellipse(230, 200, 20, 25);
//eyes
fill(240, 140, 140);
circle(200, 240, 20, 20);
fill(210, 4, 45);
rect(165,270, 70, 10, 20);
//mouth
fill(243,207,198);
ellipse(200,100, 40, 70);
ellipse(200, 30, 40, 70);
ellipse(160, 65, 70, 40);
ellipse(240, 65, 70, 40);
fill(255, 215, 0);
circle(200, 65, 30);
//flower hat
}