> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.u3pP0AZB3O4/rev.398
 * 
 * authors: 
 *   TEKOteko

 * 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, "Sara Reis - 02 - I Am The Walrus", created by Sara Reis
// http://dflab.sketchpad.cc/sp/pad/view/ro.9rSqhQCzpOntfO/rev.356
//Also, credit Delacroix for his excellent work that opened doors for much butchering from my part.

/* @pjs preload="/static/uploaded_resources/p.10089/Sardan2.jpg"; */

PImage srd = loadImage("/static/uploaded_resources/p.10089/Sardan2.jpg");

int i=400; 
 
void setup() {   
    
    size(800,121);

   
    background(srd,0,0,0);   
    //poder
    textSize(13);
    fill(225);
    text("权", 713, 74);
    text("势", 713, 87);
    strokeWeight(5);    
    frameRate(1000000); 
}
 
void draw() { 

   

    textSize(13);
    fill(225);
    text("权", 713, 74);
    text("势", 713, 87);
    stroke(random(30), random(30), random(30), 3);
 
 
    
    line(i,0, random(500,width), height);
 
  
    if (i<width) { 
        i++;
    } else {
        i=0;
    }
}