/* built with Studio Sketchpad:
* https://sketchpad.cc
*
* observe the evolution of this sketch:
* https://spagnuolo.sketchpad.cc/sp/pad/view/ro.lQ-R0MITMRG/rev.2268
*
* authors:
* Elaina Davies
* license (unless otherwise specified):
* creative commons attribution-share alike 3.0 license.
* https://creativecommons.org/licenses/by-sa/3.0/
*/
// Name: Elaina Davies
// Date: 25/10/2016
// Title: Draw a Face
//background
size(300,300);
background(125,255,125);
//body
fill(255,255,255);
stroke(0,0,0);
strokeWeight(5);
ellipse(150,290,180,230);
//ears
fill(255,255,255);
stroke(0,0,0);
ellipse(225,85,75,75);
fill(240,103,171);
stroke(240,103,171);
ellipse(225,85,45,45);
fill(255,255,255);
stroke(0,0,0);
ellipse(75,85,75,75);
fill(240,103,171);
stroke(240,103,171);
ellipse(75,85,45,45);
//face shape
fill(255,255,255);
stroke(0,0,0);
strokeWeight(5);
ellipse(150,150,200,210);
//eyes
fill(0,0,0);
stroke(0,0,0);
ellipse(190,135,50,40);
ellipse(115,135,50,40);
stroke(0,0,0);
fill(255,255,255);
ellipse(190,135,25,25);
ellipse(115,135,25,25);
fill(0,0,0);
stroke(125,255,125);
strokeWeight(4);
ellipse(190,135,10,10);
ellipse(115,135,10,10);
//nose
fill(0,0,0);
stroke(0,0,0);
ellipse(155,170,25,15);
fill(255,255,255);
arc(175,180,35,35,0,PI);
arc(135,180,35,35,0,PI);