Advertisement
xeromino

pink

Jun 3rd, 2014
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. PImage img;
  2. int step=3;
  3.  
  4. void setup() {
  5.   img = loadImage("http://i.imgur.com/rVnFQo3.jpg");
  6.   size(img.width, img.height);
  7.   frameRate(5);
  8.   image(img, 0, 0);
  9. }
  10.  
  11. void draw() {
  12.  
  13.   fill(#ED00AA, 40);
  14.   noStroke();
  15.   float y = 60 + random(10,80);
  16.   rect(0, y, width, y);
  17.  
  18.   //if (frameCount<30) saveFrame("image-###.gif");
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement