//by thera barnett /*i'm so excited, i can't believe i actually got this workin this far. i'm trying to recreate a sort of Tom Friedman effect - the trippy Total cereal boxes.. later i plan to implement a class (object?) called chunk that would have all the parameters like width, height, and an array of pixels to hold the ind. pixels of each chunk, so i can try accesssing them and do strange things with more flexibility... yay! my first program! */ //change these to anything to get different results... int chunkWidth = 10; int chunkHeight = 15; //int[] chunkPixels; //int multiple = 2; color tempPixel; BImage a; int xpos; int ypos; int shiftx =0; int shifty =0; void setup(){ size(800, 600); //chunkPixels = new int[chunkWidth*chunkHeight]; noFill(); noBackground(); a = loadImage("day4yellowed.jpg"); image(a, 0, 0); } void draw() { for(int shifty=0; shifty