> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://bard117s14.sketchpad.cc/sp/pad/view/ro.uVq1ZqU9HEB/rev.82
 * 
 * authors: 
 *   Keith O'Hara

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



// Keith O'Hara <[email protected]>
// Feb 4 2014

void setup() {    
    background(24);
    size(500, 500); 
    strokeWeight(5);
    stroke(196);
} 

void draw() {
    line(pmouseX, pmouseY, mouseX, mouseY);
}