aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-03-27 13:57:16 +0200
committerSven Gothel <[email protected]>2023-03-27 13:57:16 +0200
commite0b096195bd5dd2670b026c972c44ea0b684b757 (patch)
tree807674bf37cccd0d5d6b602e2a3083ee7052cec4
parentb01bfd38a4e3cea81aa6ea70ab7d5a59f827cee9 (diff)
Quaternion: Shorten toString() type name
-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+"]";
}
}