xxxxxxxxxx
83
function setup() {
createCanvas(400, 400);
background(87, 6, 140);
}
function draw(){
// START YOUR DRAWING HERE!
//ears
fill(232,190,172);
stroke(0);
ellipse (110,200,30,60);
ellipse (290,200,30,60);
//neck
fill(232,190,172);
stroke(0);
rect (170,290,60,80);
//body
fill("#5A5A5A");
rect (75,320, 250,200, 40)
fill(232,190,172);
stroke(0);
arc(200, 320, 80, 40, 0, PI, CHORD);
fill(232,190,172);
noStroke(0);
arc(200, 320, 60, 40, 0, PI );
//face
fill (232,190,172);
stroke(0);
ellipse (200,200,180,200);
//eyes
fill (255);
ellipse (160, 180, 50,30);
ellipse (240, 180, 50, 30);
fill ("#1569C7");
ellipse (160, 180, 20, 20);
ellipse (240, 180, 20, 20);
fill (0);
ellipse (160, 180, 8, 8);
ellipse (240, 180, 8, 8);
//eye shine
fill (255);
ellipse (165, 175, 5, 5);
ellipse (245, 175, 5, 5);
// nose
fill("#9F7967");
noStroke(0);
quad(190, 215, 210, 215, 220, 225, 180, 225);
fill(0);
ellipse(194,220,7,7);
ellipse(205,220,7,7);
stroke(0);
line(210,164, 210,215);
//hair
fill("#c89f73");
noStroke(0);
ellipse(200,108, 173, 65);
triangle (110,180, 115, 100, 150,110);
triangle (290,180, 285, 100, 250,110);
//mouth
fill(231,106,106);
stroke(0);
arc(200, 260, 60, 13, 0, PI );
arc(200, 260, 60, 8, PI, 0 );
fill(0);
stroke(0);
line(170,260, 230, 260);
}