diff options
Diffstat (limited to 'src/javax/vecmath/AxisAngle4f.java')
-rw-r--r-- | src/javax/vecmath/AxisAngle4f.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/javax/vecmath/AxisAngle4f.java b/src/javax/vecmath/AxisAngle4f.java index c162c5a..eb16fb4 100644 --- a/src/javax/vecmath/AxisAngle4f.java +++ b/src/javax/vecmath/AxisAngle4f.java @@ -437,6 +437,7 @@ public class AxisAngle4f implements java.io.Serializable, Cloneable { * The form is (x,y,z,angle). * @return the String representation */ + @Override public String toString() { return "(" + this.x + ", " + this.y + ", " + this.z + ", " + this.angle + ")"; } @@ -465,6 +466,7 @@ public class AxisAngle4f implements java.io.Serializable, Cloneable { * @param o1 the object with which the comparison is made * @return true or false */ + @Override public boolean equals(Object o1) { try { @@ -515,6 +517,7 @@ public class AxisAngle4f implements java.io.Serializable, Cloneable { * same hash value, although this is not likely. * @return the integer hash code value */ + @Override public int hashCode() { long bits = 1L; bits = 31L * bits + (long)VecMathUtil.floatToIntBits(x); @@ -532,6 +535,7 @@ public class AxisAngle4f implements java.io.Serializable, Cloneable { * @see java.lang.Cloneable * @since vecmath 1.3 */ + @Override public Object clone() { // Since there are no arrays we can just use Object.clone() try { |