.. | .. |
---|
160 | 160 | |
---|
161 | 161 | static cVector xformDir(cVector v, double mat[][]) |
---|
162 | 162 | { |
---|
| 163 | + new Exception().printStackTrace(); |
---|
163 | 164 | System.exit(0); |
---|
164 | 165 | cVector temp = new cVector(); |
---|
165 | 166 | xformDir(v, mat, temp); |
---|
.. | .. |
---|
623 | 624 | private static int indxr[] = new int[4]; |
---|
624 | 625 | private static int indxc[] = new int[4]; |
---|
625 | 626 | |
---|
| 627 | + static double[][] Identity = new double[4][4]; |
---|
626 | 628 | |
---|
627 | 629 | static int SIZE = 0; // 65536*64; |
---|
628 | 630 | |
---|
.. | .. |
---|
638 | 640 | costable[i] = Math.cos(PI2 * i/SIZE); |
---|
639 | 641 | sintable[i] = Math.sin(PI2 * i*i/SIZE/SIZE); |
---|
640 | 642 | } |
---|
| 643 | + |
---|
| 644 | + LA.matIdentity(Identity); |
---|
641 | 645 | } |
---|
642 | 646 | |
---|
643 | 647 | static double cos(double x0) |
---|