> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://studio.sketchpad.cc/sp/pad/view/ro.gsGzam$fZkL/rev.1325
 * 
 * authors: 
 *   Federico Renteria

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



void setup(){
    size(500 ,500);
    }
void draw(){
    frameRate(06000);
    line(random(500), random(500),250, 500);
    stroke(255,255,255);  
         line(random(500), random(500), 250, 0);
    stroke(0,0,0);
   
    }