int num =20; // number in each dimension of the array int multi = 20; // number of pixels wide each cell will be float[][] cord; int feel = 210; // hue value int power = 500; // how strong the mouse input is. numbers over 100 spread further. void setup(){ ellipseMode(CORNERS); colorMode(HSB, 360,100,100); frameRate(60); size(400, 400); // set the size to number of cells * pixel size of each cell background(255); smooth(); noStroke(); cord = new float[num][num]; // create cordiate array for(int i=0; i