> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://bard117s14.sketchpad.cc/sp/pad/view/ro.ZbbG4C7RsHn/rev.40
 * 
 * authors: 
 *   jb

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



/*Jesse Barlow
*[email protected]
*January 30th, 2014 A.D.
*/
fill(100,100,220);
rectMode(CENTER);
size(700, 700);
//bkgrd
rect(width/2, height/2, 700, 700);
//face
fill(240,193,162);
ellipse(width/2, height/2, 450, 550);
//nose
fill(240,193,162);
rect(width/2, (height/2)+45, 110, 50);
rect(width/2, (height/2)+10, 70, 120);
//left eye
fill(255);
ellipse((width/2)-100, (height/2)-50, 150, 50);
//right eye
ellipse((width/2)+100, (height/2)-50, 150, 50);
//left pupil
fill(10);
ellipse((width/2)-100, (height/2)-50, 50, 48);
//right pupil
ellipse((width/2)+100, (height/2)-50, 25, 25);
//left nostril
ellipse((width/2)-20, (height/2)+50, 20, 20);
//right nostril
ellipse((width/2)+20, (height/2)+50, 20, 20);
//eyebrows
ellipse(250, 250, 160, 10);
ellipse(450, 250, 160, 10);
//hair
ellipse(width/2, 100, 400, 200);
//mouth
fill(255,200,200);
ellipse((width/2), (height/2)+170, 150, 100);