> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.5MpAVOhPNB-/rev.13
 * 
 * authors: 
 *   JoaoPinto

 * 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(200, 200); 

    // cor de fundo
    background(56,93,131);
} 

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

void draw() {
fill(183,206,229);
triangle(135,40,45,60,110,140);
fill(255,255,255);
triangle(130,45,52,63,108,131);
fill(8,58,111);
triangle(52,63,92,54,108,130);
fill(183,206,229);
triangle(15,20,17,50,42,30);
fill(255,255,255);        
triangle(17,23,19,46,37,31);
fill(8,58,111);
triangle(17,23,19,46,27,27);
}