> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://spagnuolo.sketchpad.cc/sp/pad/view/ro.UW6Ubf4k3r6/rev.94
 * 
 * authors: 
 *   Carly Seymour

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



/*
This sketch builds on a prior work, "insect face (spider) ", created by Carly Seymour
http://spagnuolo.sketchpad.cc/sp/pad/view/ro.4BQRwSPY8vlmQhY/rev.327
*/





// Name: Carly Seymour
// Date: 1/10/16
// Title: Insect face (spider)
size(300,300); 
//head
strokeWeight(4);
fill(171,173, 179);
ellipse(150,150,150,150);
strokeWeight(2);
//white eyes
fill(255,255,255);
ellipse(190,144,40,40);
fill(255,255,255);
ellipse(110,144,40,40);
//black eyes
fill(3,3,3);
ellipse(190,150, 25,25);
fill(3,3,3);
ellipse(110,150,25,25);
//white inner eyes
fill(255,255,255);
ellipse(185,145,13,13);
fill(255,255,255);
ellipse(105,145,13,13);
//mouth
stroke(0,0,0);
strokeWeight(3);
noFill();
arc(150,175,40,20,0,PI);
//Arms
strokeWeight(5);
arc(43,145,65,-30,0,PI);
arc(45,120,65,-30,0,PI);
arc(50,180,65,-30,0,PI);
arc(70,210,65,-35,0,PI);

arc(256,145,65,-30,0,PI);
arc(249,120,65,-30,0,PI);
arc(249,180,65,-30,0,PI);
arc(235,210,65,-30,0,PI);