> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://spagnuolo.sketchpad.cc/sp/pad/view/ro.VcHA7zT8HJ0/rev.1734
 * 
 * authors: 
 *   Maddi Phillips

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



// Name: maddi phillips
// Date:1/11/16
// Title: Robot face
background(128,128,0) 
//face shape
size (300,300);
fill(192,192,192);
strokeWeight(1);
rect(80,80,150,150);
//eyes 
fill (255,255,255);
rect (170,120,20,20);
rect(120,120,20,20);
fill (0,0,0);
rect(125,125,10,10);
rect(175,125,10,10);
//nose 
fill(255,0,0);
ellipse(155,150,15,15);
fill(0,0,0);
ellipse(155,150,10,10);
//neck
strokeWeight(2);
fill(192,192,192);
rect(125,230,60,70);
//mouth
fill(255,255,255);
rect(125,170,60,20);
line(150,170,150,190);
line(160,170,150,190);
line(160,170,160,190);
line(170,170,160,190);
line(170,170,170,190);
line(180,170,170,190);
line(180,170,180,190);
line(150,170,140,190);
line(140,170,140,190);
line(140,170,130,190);
line(130,170,130,190);