Cut up my images again tonight to make some more static collages.

Super cool what is going on, would be cool if I could make things spin and animate!

Or maybe if things were 3D?

It’s easy to do endless permutations.

Hard to imagine these collages are just my images sliced up super thin.

Good night, world!
Source Code:
PImage img; // Declare variable “a” of type PImage
PImage img1;
PImage img2;
PImage img3;
PImage img4;
PImage img5;
PImage img6;
void setup() {
size(600, 600);
// img = loadImage(“subway-mirror.jpg”); // Load the image into the program
// img1 = loadImage(“subway.jpg”);
img2 = loadImage(“dreamywater.jpg”);
// img2 = loadImage(“subway-upside.jpg”);
// img3 = loadImage(“subway-upside-right.jpg”);
img4 = loadImage(“urban-abstract-water-1.jpg”);
img5 = loadImage(“steel-is-beautiful.jpg”);
img6 = loadImage(“steel-oxidizes.jpg”);
}
void draw() {
//background(41, 41, 46);
//background(255);
background(0);
int x = 0; // this is where the loop starts
// int y = 200;
int w = 1; // this is the width of each “slice”
while (x < width) {
translate(width/4, height/4);
rotate(10);
copy(img5, x, 0, w, 640, x, 0, w, 640);
copy(img6, x+w, 0, w, 640, x, 0, w, 640);
x = x + 1; // this is how far apart each “slice” is
}
}