summaryrefslogtreecommitdiffstats
path: root/src/javax/vecmath/GMatrix.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/javax/vecmath/GMatrix.java')
-rw-r--r--src/javax/vecmath/GMatrix.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/javax/vecmath/GMatrix.java b/src/javax/vecmath/GMatrix.java
index 5ccdbb4..f6c76b1 100644
--- a/src/javax/vecmath/GMatrix.java
+++ b/src/javax/vecmath/GMatrix.java
@@ -1378,7 +1378,7 @@ public class GMatrix implements java.io.Serializable, Cloneable {
for (int i = 0; i < nRow; i++) {
for (int j = 0; j < nCol; j++) {
- bits = 31L * bits + Double.doubleToLongBits(values[i][j]);
+ bits = 31L * bits + VecMathUtil.doubleToLongBits(values[i][j]);
}
}