> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://bard117s14.sketchpad.cc/sp/pad/view/ro.vlgnkLpz-Bo/rev.2
 * 
 * authors: 
 *   Sam Robotham

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



/* Sam Robotham
  1/30/14
  [email protected]
  Self Portrait Coding  */

smooth();
size(500, 500);
background(232, 180, 108);

//Eyes
ellipse(180, 125, 80, 80);
ellipse(320, 125, 80, 80);

//Pupils
fill(62, 22, 22);
ellipse(180, 125, 25, 25);
ellipse(320, 125, 25, 25);

//Mouth
strokeWeight(3);
line(100, 400, 400, 400);

//Nose
line(250, 250, 300, 300);
line(300, 300, 250, 300);

//Eyebrows
strokeWeight(10);
line(140, 50, 205, 60);
line(295, 60, 360, 50);