From 06a8a056c1c8427b8b65354f6f8e7f50c08b2fd9 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Sat, 18 Apr 2020 14:22:35 -0700 Subject: [PATCH] clarify the javadoc of Quaternion.toString() "displaced"? --- jme3-core/src/main/java/com/jme3/math/Quaternion.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/jme3-core/src/main/java/com/jme3/math/Quaternion.java b/jme3-core/src/main/java/com/jme3/math/Quaternion.java index a571e2e01..2d8cc459d 100644 --- a/jme3-core/src/main/java/com/jme3/math/Quaternion.java +++ b/jme3-core/src/main/java/com/jme3/math/Quaternion.java @@ -1218,11 +1218,10 @@ public final class Quaternion implements Savable, Cloneable, java.io.Serializabl } /** + * toString returns a string representation of this + * Quaternion. The format is: * - * toString creates the string representation of this - * Quaternion. The values of the quaternion are displaced (x, - * y, z, w), in the following manner:
- * (x, y, z, w) + * (X.XXXX, Y.YYYY, Z.ZZZZ, W.WWWW) * * @return the string representation of this object. * @see java.lang.Object#toString()