javadoc correction: Quaternion.negate() doesn't "invert" anything

This commit is contained in:
Stephen Gold 2020-04-17 00:07:37 -07:00
parent 8896cd5a68
commit 4731069110

View File

@ -1199,8 +1199,7 @@ public final class Quaternion implements Savable, Cloneable, java.io.Serializabl
} }
/** /**
* <code>negate</code> inverts the values of the quaternion. * Flip the signs of all components of this Quaternion.
*
*/ */
public void negate() { public void negate() {
x *= -1; x *= -1;