diff options
author | Harvey Harrison <[email protected]> | 2013-07-10 09:30:37 -0700 |
---|---|---|
committer | Harvey Harrison <[email protected]> | 2013-07-10 09:30:37 -0700 |
commit | 8143fe3b638b5a6b60ee717d98046856a2d2f547 (patch) | |
tree | 5a395167d9203d3218b4622685ffad993b308230 /src/javax/vecmath/Matrix3f.java | |
parent | ae0eabff70c9b63eac241b9f30bd389356cfb220 (diff) |
vecmath: introduce hash mixing helpers rather than a different float/double to bits helper
Signed-off-by: Harvey Harrison <[email protected]>
Diffstat (limited to 'src/javax/vecmath/Matrix3f.java')
-rw-r--r-- | src/javax/vecmath/Matrix3f.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/javax/vecmath/Matrix3f.java b/src/javax/vecmath/Matrix3f.java index 4f27128..c5f51db 100644 --- a/src/javax/vecmath/Matrix3f.java +++ b/src/javax/vecmath/Matrix3f.java @@ -1969,16 +1969,16 @@ public class Matrix3f implements java.io.Serializable, Cloneable { @Override public int hashCode() { long bits = 1L; - bits = 31L * bits + (long)VecMathUtil.floatToIntBits(m00); - bits = 31L * bits + (long)VecMathUtil.floatToIntBits(m01); - bits = 31L * bits + (long)VecMathUtil.floatToIntBits(m02); - bits = 31L * bits + (long)VecMathUtil.floatToIntBits(m10); - bits = 31L * bits + (long)VecMathUtil.floatToIntBits(m11); - bits = 31L * bits + (long)VecMathUtil.floatToIntBits(m12); - bits = 31L * bits + (long)VecMathUtil.floatToIntBits(m20); - bits = 31L * bits + (long)VecMathUtil.floatToIntBits(m21); - bits = 31L * bits + (long)VecMathUtil.floatToIntBits(m22); - return (int) (bits ^ (bits >> 32)); + bits = VecMathUtil.hashFloatBits(bits, m00); + bits = VecMathUtil.hashFloatBits(bits, m01); + bits = VecMathUtil.hashFloatBits(bits, m02); + bits = VecMathUtil.hashFloatBits(bits, m10); + bits = VecMathUtil.hashFloatBits(bits, m11); + bits = VecMathUtil.hashFloatBits(bits, m12); + bits = VecMathUtil.hashFloatBits(bits, m20); + bits = VecMathUtil.hashFloatBits(bits, m21); + bits = VecMathUtil.hashFloatBits(bits, m22); + return VecMathUtil.hashFinish(bits); } |