> show canvas only <


/* built with Studio Sketchpad: 
 *   http://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   http://sketchpad.cc/sp/pad/view/ro.vu$rBJJXb7lYGq/rev.83
 * 
 * authors: 
 *   Ari Bader-Natal
 *   Someone Else

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



// Original sketch from http://processingjs.org/learning/basic/random

size(300, 300);
smooth();
strokeWeight(12);

for(int i = 0; i < width; i++) {
  float x = random(0, width);
  stroke(random(50), random(255), random(255), 100);
  line(i, 0, x, height);
}