> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://spagnuolo.sketchpad.cc/sp/pad/view/ro.n6u86v$hVun/rev.1984
 * 
 * authors: 
 *   Anonymous
 *   Ciara Quartermaine
 *   Ciara Quartermaine

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



// Name: Ciara Quartermaine
// Date: 1/11/2016
// Title: Face
size(300,300);
background(121,95,212);


//Mouth
fill(255,255,255);
arc(150,185,135,185,10,PI);


//Ears
fill(133,64,52);
triangle(135,70,240,120,240,0);
triangle(150,70,60,130,60,0);


fill(1,1,1);
strokeWeight(4);
//collar
line(220,150,220,255);
line(80,150,80,255);
line(80,255,220,255);

strokeWeight(1)
fill(133,64,52);
ellipse(150,150,200,200);


fill(10,180,39);
//eyes - whites
ellipse(195,130,45,40);
ellipse(105,130,45,40);

fill(232,240,0);
//bell on collar
ellipse(150,270,40,40);


noStroke();
fill(10,204,39);
//eyes - colour
ellipse(195,130,35,30);
ellipse(105,130,35,30);


fill(1,1,1);
//pupil
ellipse(195,130,10,40);
ellipse(105,130,10,40);


stroke(1)
//Nose
fill(245,160,217);
triangle(150,185,135,173,165,173);


//whiskers
line(125,180,80,170);
line(125,180,80,190);
line(175,180,220,170);
line(175,180,220,190);


stroke(2);
fill(1,1,1);
line(150,195,135,210);
line(150,195,165,210);