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,9 +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; 30 + int DX, DY;31 + float W = 1;32 +33 + double scale; // Distance from clicked point to origin29 34 30 - static double matbuffer[][] = new double[4][4];35 + static double[][] matbuffer = new double[4][4];31 36 }