ClickInfo.java
.. .. @@ -12,6 +12,7 @@ 12 12 ClickInfo() 13 13 { 14 14 bounds = new Rectangle(); 15 + //System.out.println("CLICKINFO");15 16 } 16 17 17 18 static final int kCamera = 1; .. .. @@ -23,11 +24,13 @@ 23 24 int flags; 24 25 Rectangle bounds; 25 26 Camera camera; 26 - double toScreen[][];27 + double[][] toScreen;27 28 iCameraPane pane; 28 29 Graphics g; 29 30 int DX, DY; 30 31 float W = 1; 32 +33 + double scale; // Distance from clicked point to origin31 34 32 - static double matbuffer[][] = new double[4][4];35 + static double[][] matbuffer = new double[4][4];33 36 }