class Background{ float bgOpacity; int gridSpace = GRID_SPACE; //opacity of background and amount of space between grid lines int[] hgrid = new int[100]; int[] vgrid = new int[100]; int numVLines; int numHLines; int gridY; int gridX; //constructor Background(float bgo, int gs){ bgOpacity = bgo; gridSpace = gs; numVLines = int(width/gridSpace); numHLines = int(height/gridSpace); } void display(){ xyOffset(); makeLineArrays(); drawBackground(); drawGrid(); drawTray(); drawTopTray(); } void xyOffset(){ gridY = gridSpace; gridX = gridSpace; } void makeLineArrays(){ for(int i=0; i