> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://bard117s14.sketchpad.cc/sp/pad/view/ro.WFxFSMSPFiw/rev.1
 * 
 * authors: 
 *   josh abramovici

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



/* 
Josh Abramovici
1/30/14
[email protected]
Self Portrait
*/

size (500, 500);
background (200, 255, 240);
smooth ();

//face
fill (242, 230, 220);
ellipse (width/2, height/2, 300, 350);

// eyes
fill (255);
ellipse (175, 200, 65, 50);

fill (0);
stroke (10, 125, 170);
strokeWeight(10);
ellipse (175, 200, 20, 20);

fill (255);
stroke (0);
strokeWeight(1);
ellipse (320, 200, 65, 50);

fill (0);
stroke (10, 125, 170);
strokeWeight(10);
ellipse (320, 200, 20, 20);


//nose
stroke (0);
strokeWeight(1);
line (240, 220, 275, 275);
line (230, 274, 275, 275);

//mouth
stroke (200, 0, 0);
strokeWeight(2);
fill (255);
ellipse (width/2, 365, 100, 50);