From 473106911077927324147989d2d2ea3c2c6b5466 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Fri, 17 Apr 2020 00:07:37 -0700 Subject: [PATCH] javadoc correction: Quaternion.negate() doesn't "invert" anything --- jme3-core/src/main/java/com/jme3/math/Quaternion.java | 3 +-- 1 file changed, 1 insertion(+), 2 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 51247b916..fd2a0f087 100644 --- a/jme3-core/src/main/java/com/jme3/math/Quaternion.java +++ b/jme3-core/src/main/java/com/jme3/math/Quaternion.java @@ -1199,8 +1199,7 @@ public final class Quaternion implements Savable, Cloneable, java.io.Serializabl } /** - * negate inverts the values of the quaternion. - * + * Flip the signs of all components of this Quaternion. */ public void negate() { x *= -1;