> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://spagnuolo.sketchpad.cc/sp/pad/view/ro.k818DjtpAnT/rev.2664
 * 
 * authors: 
 *   Kristina Atsaros

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



// Name: Kristina Atsaros 
// Date: 1/11/16
// Title: Draw A Face 

size(300,300)
background(0,200,250);

//whole face 
strokeWeight(2);
fill(186,184,186);
ellipse(150,150,170,170);

//mouth 
fill(253,252,247);
ellipse(150,190,80,40);

//left white eye 
fill(252,252,247);
ellipse(110,144,40,40);

//right white eye 
fill(252,252,247);
ellipse(190,144,40,40);

//black left eye 
fill(18,18,16);
ellipse(110,145,25,25);

//right black eye 
fill(18,18,16);
ellipse(190,145,25,25);

//cute left white eye 
fill(252,252,247);
ellipse(105,140,10,10);

//cute right white eye
fill(252,252,247);
ellipse(185,140,10,10);

//nose
fill(242,75,150);
triangle(135,175,150,190,165,175);

//mouth dots - top (left side) 
fill(18,18,16);
ellipse(175,185,3,3);

//mouth dots - bottom left (left side) 
fill(18,18,16);
ellipse(180,195,3,3);

//mouth dots - bottom right (left side) 
fill(18,18,16);
ellipse(170,195,3,3);

//mouth dots - top (right side) 
fill(18,18,16);
ellipse(125,185,3,3);

//mouth dots - bottom right (right side)
fill(18,18,16);
ellipse(130,195,3,3);

//mouth dots - bottom left (right side) 
fill(18,18,16);
ellipse(120,195,3,3);