ClickInfo.java
.. .. @@ -24,7 +24,7 @@ 24 24 int flags; 25 25 Rectangle bounds; 26 26 Camera camera; 27 - double toScreen[][];27 + double[][] toScreen;28 28 iCameraPane pane; 29 29 Graphics g; 30 30 int DX, DY; .. .. @@ -32,5 +32,5 @@ 32 32 33 33 double scale; // Distance from clicked point to origin 34 34 35 - static double matbuffer[][] = new double[4][4];35 + static double[][] matbuffer = new double[4][4];36 36 }