> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://bard117f12.sketchpad.cc/sp/pad/view/ro.vcxEglFp4Sf/rev.120
 * 
 * authors: 
 *   
 *   
 *   Christeina Wade
 *   Abhinanda Bhattacharyya
 *   
 *   Sam Taffel
 *   Ruby Jackson
 *   Dee Cao
 *   zeke
 *   Georgina

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



/* Ruby Jackson
September 23rd
Assignment 2


This Self Portrait, which was done on Processing greatly differs from my DesignBlocks self portrait. This design reacts and changes depending on the movement and the x and y coordinates of the mouse; whereas, in DesignBlocks my sketch was not interactive and basically unresponsive. This design features a greater range of colors, which change depending on the mouse's movement and the frame count. Unlike my DesignBlocks sketch this design is more abstract, less figurative and was not attempting to realistically portray the human body. */








void setup(){
  size(400,400);
  smooth();
  background(9,155,107);
}

void draw(){
  stroke(1);
  ellipse(mouseX,mouseY,60,70);
  fill(234,147,125);
  
  fill(0);
  ellipse(mouseX-10,mouseY-10,5,5);
  ellipse(mouseX-10,mouseY-10,5,10);
  ellipse(mouseX+10,mouseY-10,5,10);
  fill(frameCount%155,9,48);
  arc(mouseX,mouseY,25,25,PI/6,PI/1.2);

  
}