From 41fddda1a4f430e45bef0154e1fdfe5671025f1e Mon Sep 17 00:00:00 2001 From: Harvey Harrison Date: Wed, 10 Jul 2013 09:32:13 -0700 Subject: vecmath: remove some unused static variables Signed-off-by: Harvey Harrison --- src/javax/vecmath/Matrix3d.java | 4 +--- 1 file changed, 1 insertion(+), 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 -- cgit v1.2.3