Normand Briere
2019-04-29 bed42c663d286d76a32f155049f9efabc2fdb73f
LA.java
....@@ -623,6 +623,7 @@
623623 private static int indxr[] = new int[4];
624624 private static int indxc[] = new int[4];
625625
626
+ static double[][] Identity = new double[4][4];
626627
627628 static int SIZE = 0; // 65536*64;
628629
....@@ -638,6 +639,8 @@
638639 costable[i] = Math.cos(PI2 * i/SIZE);
639640 sintable[i] = Math.sin(PI2 * i*i/SIZE/SIZE);
640641 }
642
+
643
+ LA.matIdentity(Identity);
641644 }
642645
643646 static double cos(double x0)