> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.ckJ7ZWJUFjT/rev.754
 * 
 * authors: 
 *   Diana Bernardo

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




    size(500, 500); 

    background(255,67, 67);
    background(252, 150, 176);
    
    
    //fill (252, 150, 176);
    //ellipse (250, 250, 460, 400);
    
    //olhos
    fill (0);
    ellipse (150,200, 50, 50);
    ellipse (350, 200, 50, 50);
    
    
    //brilho dos olhos
    fill (255);
    ellipse (160, 190, 10, 10);
    ellipse (360, 190, 10, 10);
    
    //brilho dos olhos2
    rect (355, 185, 10, 10)
    rect (155, 185, 10, 10)
    
    //nariz
    fill (252, 150, 176);
    strokeWeight (6);
    ellipse (250, 250, 100, 60);
    
    //nariz2
    //triangle (250,300, 180, 220, 320,220)
    
    //buracos nariz
    fill (0);
    ellipse (230, 250, 20, 20);
    ellipse (270, 250, 20, 20);
    
    noFill (0);
    bezier (150,300, 200,400, 300,400, 350,300);