// UdK Computational design // Marius Watz 2003 // http://www.evolutionzone.com/udk/ // // UDK03_01_arrays // // Example of using arrays to store large number // of values. float xPos[],yPos[]; int num; void setup() { size(400,400); num=2000; // Initialise arrays xPos=new float[num]; yPos=new float[num]; for(int i=0; i