Hi thanks for the above example, its just what I needed, but I am still coming across problems with my patch.
I am trying to combine the above code with this example code, in an attempt to make an array of images (.jpgs) rather than ellipses.
Apologies for posting such a seemingly simple noob problem. I have tried lots of variations on the code and cant get it to compile, if anyone can direct me to the correct way of combining these, that would be so helpful..
Thanks
JB
- PImage[] myImageArray = new PImage[5];
void setup() {
size(800, 800);
for (int i=0; i<myImageArray.length; i++) {
myImageArray[i] = loadImage( "pic" + i + ".jpg");
}
}