> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.bAIZBjCB1Ky/rev.11
 * 
 * authors: 
 *   Liliana Dantas

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



// This sketch builds on a prior work, "João Carneiro - 02 Vertex", created by jo&#227;o Miguel
// http://dflab.sketchpad.cc/sp/pad/view/ro.9Sumfr5FrjyfIu/rev.173



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

    // cor de fundo
    background(0);
} 

     void draw() {
         stroke(255);
       line(50, 0, mouseX, mouseY);
         stroke(255,243,0);
       line(250, 300, mouseX, mouseY);
 }