float [] data = { 99.1, 33.2, 344.3, 22.4, 66.7 }; int many= data.length; int nextX; int nextY; final int FIRSTX=10; final int FIRSTY=20; final int BARWIDTH=13 ; /// width of graph float big=100; float multiplier; void setup() { size( 800, 480); } void draw() // Show all values; { background(0,0,100); graph(); show(); fill(255); text("Project 4 Frank Novello", 10, height-20 ); } void graph() { // big= biggest( data ); // Find biggest value in data. // big= biggest( data ); // Find biggest value in data. int k= whereBig( data ); big= data[k]; // Gets biggest value in a. multiplier= (width-90) / big; } void show() //// Show elements of array. { nextX= FIRSTX; nextY= FIRSTY; for (int j=0; j z[w]) w=j; // replace w with INDEX of bigger value! } return w; }