> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://spagnuolo.sketchpad.cc/sp/pad/view/ro.NddUyljUkBC/rev.1734
 * 
 * authors: 
 *   Alida Pilson
 *   Mia Frankowiak

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



// Name:
// Date:
// Title:

size(300,300);

//Face shape
strokeWeight(10);
stroke(20,200,240);
fill(10,180,220);
ellipse(150,150,150,200);

//Eyes
strokeWeight(5);
stroke(10,180,220);
fill(250,250,250);
ellipse(190,140,50,30);

fill(250,250,250);
ellipse(115,140,50,30);

//Pupils and iris
strokeWeight(5);
stroke(20,200,140);

fill(0,0,0);
ellipse(190,140,20,20);

fill(0,0,0);
ellipse(115,140,20,20);

//light reflection in eyes

stroke(255);
strokeWeight(5);

ellipse(192,135,2,2);
ellipse(117,135,2,2);

//nose

stroke(0);
strokeWeight(1);
fill(10,180,220);
triangle(140,180,160,180,150,150);

stroke(10,180,220);
strokeWeight(10);
line(150,170,150,80);

//smile

stroke(1);
strokeWeight(3);
fill(10,180,220);
arc(150,200,50,20,0,PI);

//tongue

stroke(150,0,0);
strokeWeight(3);
fill(255,0,0);
arc(150,210,20,30,0,PI);
line(150,210,150,215);

//ears

stroke(20,200,240);
strokeWeight(5);
fill(10,180,220);
triangle(60,120,70,160,70,140);

triangle(240,120,230,160,230,140);