Normand Briere
2019-09-18 f9325048496d7cdbcad233f8a6b84c88e79adcc2
ClickInfo.java
....@@ -12,7 +12,7 @@
1212 ClickInfo()
1313 {
1414 bounds = new Rectangle();
15
- System.out.println("CLICKINFO");
15
+ //System.out.println("CLICKINFO");
1616 }
1717
1818 static final int kCamera = 1;
....@@ -24,7 +24,7 @@
2424 int flags;
2525 Rectangle bounds;
2626 Camera camera;
27
- double toScreen[][];
27
+ double[][] toScreen;
2828 iCameraPane pane;
2929 Graphics g;
3030 int DX, DY;
....@@ -32,5 +32,5 @@
3232
3333 double scale; // Distance from clicked point to origin
3434
35
- static double matbuffer[][] = new double[4][4];
35
+ static double[][] matbuffer = new double[4][4];
3636 }