sketchpad's open studio is a place to create and share Processing canvases. Sign in now or sign up (free). X
 
 

Loading audio player from Soundcloud...
Embed this narration into the sketch's timeline

 
Untitled Sketch

Saved Aug 5, 2012
// Pressing Control-R will render this sketch.
 
int i = 0; 
 
void setup() {  // this is run once.   
    background(255);
    size(300, 400); 
    smooth();
    frameRate(5);
    strokeWeight(25);
}
 
void draw() {    
    stroke(random(50), random(255), random(255), 100);
    line(i, 0, random(0, width), height);
    if (i < width) {
        i++;
    } else {
        i = 0; 
    }
}
 
 

Unless specified otherwise in the source code, this work, created by
1 unnamed author
is licensed under a Creative Commons Attribution-Share Alike 3.0 License.

Creative Commons License

Authors

1 unnamed author

Edit latest version


List all mods (12)

Export latest version

Source code
HTML (w/canvas)