summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarvey Harrison <[email protected]>2013-07-10 09:32:13 -0700
committerHarvey Harrison <[email protected]>2013-07-10 09:32:13 -0700
commit41fddda1a4f430e45bef0154e1fdfe5671025f1e (patch)
tree6bb078153bea294de6b745549cb6b8da16149fd0
parent8143fe3b638b5a6b60ee717d98046856a2d2f547 (diff)
vecmath: remove some unused static variables1.6.0-pre91.6.0-pre81.6.0-pre121.6.0-pre111.6.0-pre10
Signed-off-by: Harvey Harrison <[email protected]>
-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