//// Vincent Castillo 9/10
//// Zelda Sketch

size( 400, 400 );
smooth();
background( 0, 0, 0);

fill( 150, 150, 255);
textSize( 24 );
text( " You can see me! ", 10, 30);

//triforce 1st run
//note: 
fill(  50, 255, 50 );
triangle(  45, 45,  35, 55,  55, 55);
fill(  50, 50, 255);
triangle(  35, 55,  25, 65,  45, 65);
fill(  255, 50, 50);
triangle(  55, 55,  45, 65,  65, 65);

//testing shapes
fill(  100, 255, 255);
rect(  185, 215, 25, 25);