summaryrefslogtreecommitdiffstats
path: root/src/javax/vecmath/Tuple2f.java
diff options
context:
space:
mode:
authorKevin Rushforth <[email protected]>2004-10-05 17:57:17 +0000
committerKevin Rushforth <[email protected]>2004-10-05 17:57:17 +0000
commitc2c794b342ee48fbaa91b6a97123884a09807e80 (patch)
tree5eb9713f863876cea9ce49168c4ea0ad97b844dc /src/javax/vecmath/Tuple2f.java
parent42c4b785100ca085a8e39d86a45cda07a8d898f1 (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/Tuple2f.java')
-rw-r--r--src/javax/vecmath/Tuple2f.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/javax/vecmath/Tuple2f.java b/src/javax/vecmath/Tuple2f.java
index b482d80..ee4b801 100644
--- a/src/javax/vecmath/Tuple2f.java
+++ b/src/javax/vecmath/Tuple2f.java
@@ -278,8 +278,8 @@ public abstract class Tuple2f implements java.io.Serializable, Cloneable {
*/
public int hashCode() {
long bits = 1L;
- bits = 31L * bits + (long)Float.floatToIntBits(x);
- bits = 31L * bits + (long)Float.floatToIntBits(y);
+ bits = 31L * bits + (long)VecMathUtil.floatToIntBits(x);
+ bits = 31L * bits + (long)VecMathUtil.floatToIntBits(y);
return (int) (bits ^ (bits >> 32));
}