> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://spagnuolo.sketchpad.cc/sp/pad/view/ro.YBUGhO6UsnN/rev.2614
 * 
 * authors: 
 *   Marie Guelden
 *   Alika Harm

 * license (unless otherwise specified): 
 *   creative commons attribution-share alike 3.0 license.
 *   https://creativecommons.org/licenses/by-sa/3.0/ 
 */ 



// Name:Marie Guelden            
// Date:25/10/16
// Title:Face

size(300,300);

//background
background(114,163,88);

//arms
strokeWeight(20);
stroke(160,100,0);
line(30,200,270,200);


//body
noStroke();
fill(160,100,0);
ellipse(150,250,125,150);

//arms
strokeWeight(20);
stroke(160,100,0);
line(30,200,270,200);

//Belly
noStroke(0);
fill(220,140,15);
ellipse(150,250,82,108);


//Ears
strokeWeight(7);
stroke(160,100,0);
fill(255,190,190);
ellipse(91,120,30,30);
ellipse(209,120,30,30);

//Head and Face 
strokeWeight(2.5);
stroke(160,100,0);
fill(160,100,0);
ellipse(150,130,120,130);

stroke(220,140,15);
strokeWeight(2.5);
fill(220,140,15);
ellipse(150,150,80,60);

stroke(220,140,15);
fill(220,140,15);
ellipse(130,110,50,50);
ellipse(170,110,50,50);


//Mouth and Eyes
stroke(0,0,0);
strokeWeight(2);
noFill(0);
arc(150,145,44,35,0,PI);

noStroke();
fill(255,255,255);
ellipse(170,110,30,30);
ellipse(130,110,30,30);

noStroke();
fill(0,0,0);
ellipse(130,110,15,15);
ellipse(170,110,15,15);

noStroke();
fill(255,255,255);
ellipse(128,108,5,5);
ellipse(168,108,5,5);

//Nostrils
noStroke();
fill(0,0,0);
ellipse(140,135,3,3);
ellipse(160,135,3,3);