Normand Briere
2019-09-18 f9325048496d7cdbcad233f8a6b84c88e79adcc2
ClickInfo.java
....@@ -12,6 +12,7 @@
1212 ClickInfo()
1313 {
1414 bounds = new Rectangle();
15
+ //System.out.println("CLICKINFO");
1516 }
1617
1718 static final int kCamera = 1;
....@@ -23,9 +24,13 @@
2324 int flags;
2425 Rectangle bounds;
2526 Camera camera;
26
- double toScreen[][];
27
+ double[][] toScreen;
2728 iCameraPane pane;
2829 Graphics g;
30
+ int DX, DY;
31
+ float W = 1;
32
+
33
+ double scale; // Distance from clicked point to origin
2934
30
- static double matbuffer[][] = new double[4][4];
35
+ static double[][] matbuffer = new double[4][4];
3136 }