PImage two;
PImage three;
void setup(){
size(600,600);
one = loadImage("one.jpg");
two = loadImage("two.jpg");
three = loadImage("three.jpg");
}
void draw(){
image(one, 0, 0);
PImage c = get();
image(c, width/2, 0);
image (two,1,1);
PImage d = get();
image(d, width/2, 0);
}
