> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.KAjYSS7DhEC/rev.958
 * 
 * authors: 
 *   Daniela Soares

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

    // cor de fundo
    background(255);
} 

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

void draw() {
background(#FF580A)
triangle(100,150, 150,100, 150,200)

rect (150,120, 50, 60);

strokeWeight(5);  

line(80,0, 80,300);
line(70,0, 70,300); 
line(220,0, 220,300); 
line(230,0, 230,300); 
//line(150,120,150,180)
fill(0);

line (250,50,300,50);
line (0,60,50,60);
line (0,70,50,70);
line (250,80,300,80);
line (0,100,50,100);
line (0,110,50,110);
line (0,120,50,120);
line (250,90,300,90);
line (250,130,300,130);
line (250,140,300,140);
line (250,150,300,150);
line (250,160,300,160);
line (250,170,300,170);
line (0,180,50,180);
line (0,190,50,190);
line (0,200,50,200);
line (250,210,300,210);
line (250,220,300,220);
line (0,230,50,230);
line (0,240,50,240);
line (250,250,300,250);

strokeWeight(2);  

}