> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.SpGFVpog9Zy/rev.664
 * 
 * authors: 
 *   DuarteCR

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



void setup() {  
    size(500, 500); 
    background(10,204,204);
    fill(57,245,245);
    stroke(57,245,245);
    quad(0,0, 0,318, 500,318, 500,0);
    
    
    //sombra
    fill(0);
    stroke(0);
    ellipse(250,399, 323,16);
    //cabeça
    fill(232,197,0);
    strokeWeight(7);
    ellipse(250,208, 323,323);
    
    
    //smile
    noFill();
    bezier(133,278,   227,277,   302,247,   335,187);
    bezier(335,187,   373,271,   337,327,   218,338);
    bezier(282,322,   284,300,   267,263,   246,260);
    
    
    //olhos
    noStroke();
    fill(0);
    ellipse(122,190, 24,101);
    
    fill(0);
    ellipse(186,186, 29,123);
    //
    fill(255);
    ellipse(118,195, 10,50);
    
    fill(255);
    ellipse(181,190, 13,65);
    

    
    
    
    
    
}