> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.S1WlNmU9FPa/rev.931
 * 
 * authors: 
 *   Maria Joao Costa

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



// as instruções que estiverem dentro desta função setup() 
// correm uma vez quando o programa arranca

void setup() {  
    
    // tamanho da tela
    size(350, 550); 

    // cor de fundo
    background(189,228,210);
    strokeWeight (5);
    fill(0);
    beginShape();
    vertex(110,137);
    vertex(80,411);
    vertex(330,274);
    vertex(70, 110);
    endShape();
    line (5, 70, 110, 135);
    strokeWeight (2);
    line (411, 80, 70, 80);
    noStroke ();
    fill (144,25,25);
    triangle (80,416,330,278,290,520);
    
    
    line (411, 85, 70, 85);
    strokeWeight (2);
   
    ellipse (200,200,50,50);
    
    
    
    
    
} 

// as instruções que estiverem dentro desta função draw
// são executadas a cada novo frame

void draw() {


}