summaryrefslogtreecommitdiffstats
path: root/src/javax/vecmath/Matrix4d.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/javax/vecmath/Matrix4d.java')
-rw-r--r--src/javax/vecmath/Matrix4d.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/javax/vecmath/Matrix4d.java b/src/javax/vecmath/Matrix4d.java
index b7c27a0..783b30c 100644
--- a/src/javax/vecmath/Matrix4d.java
+++ b/src/javax/vecmath/Matrix4d.java
@@ -422,6 +422,7 @@ public class Matrix4d implements java.io.Serializable, Cloneable {
* Returns a string that contains the values of this Matrix4d.
* @return the String representation
*/
+ @Override
public String toString() {
return
this.m00 + ", " + this.m01 + ", " + this.m02 + ", " + this.m03 + "\n" +
@@ -2978,6 +2979,7 @@ public class Matrix4d implements java.io.Serializable, Cloneable {
* @param t1 the matrix with which the comparison is made
* @return true or false
*/
+ @Override
public boolean equals(Object t1)
{
try {
@@ -3071,6 +3073,7 @@ public class Matrix4d 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 + VecMathUtil.doubleToLongBits(m00);
@@ -3583,6 +3586,7 @@ public class Matrix4d implements java.io.Serializable, Cloneable {
* @see java.lang.Cloneable
* @since vecmath 1.3
*/
+ @Override
public Object clone() {
Matrix4d m1 = null;
try {