> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.RS1n4yZ995d/rev.2
 * 
 * authors: 
 *   Filipa Rodrigues

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



size (500,500);

colorMode (RGB);
background(179,139,255);


noStroke();
fill(153,108,227);

triangle(20,20,150,400,400,125);
triangle(480,20,350,50,350,350);
//cabeça
ellipse(250,250,450,450);


// olhos
noStroke();
fill(216,222,56);

ellipse(150,150,80,60);
ellipse(350,150,80,60);

//boca
stroke(1);
fill(119,67,206);
ellipse(250,350,150,100);

//bochechas
noStroke();

fill(107,44,209);
ellipse(175,310,200,150);
ellipse(325,310,200,150);

//nariz
noStroke();

fill(240,162,238);

triangle(200,230,250,280,300,230);

//olhos2
fill(0,0,0);
ellipse(150,150,20,60);
ellipse(350,150,20,60);

stroke(1);
strokeWeight(4);
point(150,275);
point(350,275);
point(110,300);
point(130,325);
point(370,325);
point(390,300);