We are about to switch to a new forum software. Until then we have removed the registration on this forum.
how do i put pictures in array in this sketch and then choose them on the fly for "mashing up" ? http://www.openprocessing.org/sketch/5934
Do you know there is a forum category precisely named "How To..."? Moved there.
Array of pictures:
PImage[] pictures = new PImage[IMAGE_NB];
Use an Array structure -> http://processing.org/reference/Array.html
final static int NUM_IMGS = 3; final static PImage[] imgs = new PImage[NUM_IMGS]; int imgIdx;
Answers
Do you know there is a forum category precisely named "How To..."? Moved there.
Array of pictures:
PImage[] pictures = new PImage[IMAGE_NB];
Use an Array structure -> http://processing.org/reference/Array.html