/* 'Distortion maker' Minsoo Lee cooperation with Younghyun chung nov.05.2006 //-- press keyboard 1,2,3,4,5,6,7,8,9 */ int numSpot = 52; // outside spot number int numSpot2 = 36; // inside spot number int movingSpot = -1; PImage back; int value = 0; int selectPrecision = 30; int imageNumber = 1; Spot[] theSpot = new Spot[numSpot+numSpot2]; // object spot void setup() { size(1400, 500,P3D); background(250); for(int i=0;i= '1' && key <= '9') { imageNumber = (int)key - '0'; setup(); } }