// Variance int[][] data; //posx, posY, r int w = 240; int h = 240; String[] lines; void setup() { //Set window surface.setResizable(true); surface.setSize(w, h); background(0,0,128); //File open lines = loadStrings("file1.csv"); data = new int[lines.length][3]; //Data read for( int i=0; i