diff options
author | Kevin Rushforth <[email protected]> | 2004-10-05 17:57:17 +0000 |
---|---|---|
committer | Kevin Rushforth <[email protected]> | 2004-10-05 17:57:17 +0000 |
commit | c2c794b342ee48fbaa91b6a97123884a09807e80 (patch) | |
tree | 5eb9713f863876cea9ce49168c4ea0ad97b844dc /src/javax/vecmath/GMatrix.java | |
parent | 42c4b785100ca085a8e39d86a45cda07a8d898f1 (diff) |
Issue number: 36
Submitted by: kcr
Fixed Issue 36 -- Vector3d hashCode() method distinguishes between -0.0 and 0.0
git-svn-id: https://svn.java.net/svn/vecmath~svn/trunk@20 dd45e54d-f42e-c781-df72-dca083a658b1
Diffstat (limited to 'src/javax/vecmath/GMatrix.java')
-rw-r--r-- | src/javax/vecmath/GMatrix.java | 2 |
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]); } } |