summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/javax/vecmath/Matrix3d.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/javax/vecmath/Matrix3d.java b/src/javax/vecmath/Matrix3d.java
index f0852aa..44d30bd 100644
--- a/src/javax/vecmath/Matrix3d.java
+++ b/src/javax/vecmath/Matrix3d.java
@@ -86,8 +86,6 @@ public class Matrix3d implements java.io.Serializable, Cloneable {
//double[] tmp_rot = new double[9]; // scratch matrix
//double[] tmp_scale = new double[3]; // scratch matrix
private static final double EPS = 1.110223024E-16;
- private static final double ERR_EPS = 1.0E-8;
- private static double xin,yin,zin,xout,yout,zout;
/**
* Constructs and initializes a Matrix3d from the specified nine values.
@@ -1081,7 +1079,7 @@ public class Matrix3d implements java.io.Serializable, Cloneable {
private final void invertGeneral(Matrix3d m1) {
double result[] = new double[9];
int row_perm[] = new int[3];
- int i, r, c;
+ int i;
double[] tmp = new double[9]; // scratch matrix
// Use LU decomposition and backsubstitution code specifically