summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/jogl/classes/com/jogamp/opengl/math/Quaternion.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/math/Quaternion.java b/src/jogl/classes/com/jogamp/opengl/math/Quaternion.java
index 430450767..849477f54 100644
--- a/src/jogl/classes/com/jogamp/opengl/math/Quaternion.java
+++ b/src/jogl/classes/com/jogamp/opengl/math/Quaternion.java
@@ -1203,7 +1203,8 @@ public class Quaternion {
throw new InternalError("hashCode not designed");
}
+ @Override
public String toString() {
- return "Quaternion[x "+x+", y "+y+", z "+z+", w "+w+"]";
+ return "Quat[x "+x+", y "+y+", z "+z+", w "+w+"]";
}
}