> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://bard117s14.sketchpad.cc/sp/pad/view/ro.BDhIdV2r2Ff/rev.4
 * 
 * authors: 
 *   Lauren Harris
 *   
 *   
 *   
 *   Keith O'Hara
 *   zoe
 *   Stefanie Walker

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



/*zoe elders; [email protected]; feb. 4, 2014;
attempting to make "natural" or "organic" looking shapes 
such as for eyebrows and lips by shaping these via a composition
of dots and lines...*/

size(750,750);
smooth();

//background colour
background(13,190,137,100);

//ears
stroke(137,92,63);
strokeWeight(.8);
fill(198,175,152);
//left
ellipse(240,285,30,60);
//right
ellipse(510,285,30,60);

//outline face
stroke(137,92,63);
strokeWeight(.8);
fill(198,175,152);
ellipse(375,300,270,350);

//eyebrows
stroke(80,48,2);
//left
strokeWeight(3);
line(340,220,360,227);
line(300,217,340,220);
line(285,220,300,217);
//right
line(385,227,400,220);
line(400,220,410,218);
line(410,218,440,212);
line(440,212,450,212);
line(450,212,455,213);
line(455,213,465,217);

//eyes
stroke(0);
strokeWeight(0.5);
fill(255,255,255);
ellipse(320,250,50,30);
ellipse(430,250,50,30);
//iris
fill(60,84,16);
ellipse(320,250,25,30);
ellipse(430,250,25,30);
fill(0,0,0);
ellipse(320,250,10,10);
ellipse(430,250,10,10);

//nose
strokeWeight(6);
point(365,340);
point(385,340);

//lips
stroke(137,92,63);
strokeWeight(4);
//upper
line(340,390,365,385);
line(365,385,375,388);
line(375,388,385,385);
line(385,385,410,390);
//midline
line(340,390,375,398);
line(375,398,410,390);
//lower
line(340,390,370,407);
line(370,407,380,407);
line(380,407,410,390);

//hat
stroke(29,49,3);
strokeWeight(20);
line(220,200,530,200);
fill(29,49,3);
strokeWeight(5);
rectMode(CORNERS);
rect(240,80,510,190);