> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.LAm3TLngrUC/rev.513
 * 
 * authors: 
 *   pedro coelho

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



void setup() {     
    size(300, 300); 
    background(45);
    
    //perna2
    fill(0);
    strokeWeight(3);
    stroke(255);
    ellipse(110, 235, 60, 20);
    
    //banana
    stroke(0)
     fill(232,197,0);
    strokeWeight(3);
    bezier(87,235,   171,232,   227,237,   178,33);
   
    //banana2
    noFill(0);
    strokeWeight(3);
    bezier(178,33,   177,127,   147,202,   87,235);
    line(87, 235, 178, 33);
    
    //boca
    fill(252, 0, 0);
    bezier(145,160, 155,175, 165,175, 175,160);
    line(145, 160, 175, 160);
    
    //olhos
    fill(255);
    ellipse (155, 100, 30, 30);
    ellipse (190, 100, 30, 30);
    
    //iris
    fill(0);
    ellipse(155, 100, 10, 10);
    ellipse(190, 100, 10, 10);
    
    //perna2
    fill(0);
    stroke(255);
    ellipse(150, 235, 60, 20);
}