> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://bard117f12.sketchpad.cc/sp/pad/view/ro.WI2Xg6ou2od/rev.2
 * 
 * authors: 
 *   
 *   
 *   
 *   
 *   Sam Taffel
 *   
 *   Victoria Castiglione
 *   
 *   
 *   Katie Coates
 *   Cole Berry-Miller

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



//Katie Coates Sept, 10, 2012, [email protected], Self-Portrait II
/*This self portrait is different dynamically in that the eyes move,
statically, in that it is a portrait of a face, and the process was different
in that I didn't have to drag anything anywhere.*/
void setup(){

size(400, 400);
}

void draw (){
  
background(0);  
strokeWeight (1);
stroke (0, 0, 0);
fill(190);
ellipse(200, 200, 200, 200);

stroke(255);
fill(190);
ellipse(95, 200, 10, 20);
ellipse(305, 200, 10, 20);

stroke(255, 255, 0);
fill(255);
ellipse(175, 180, mouseX, 60);
ellipse(225, 180, mouseX, 60);

stroke(0, 255, 255);
line(180, 260, 220, 260);

strokeWeight(5);
stroke(255, 0, 255);
line (200, 100, 200, 70);



}