correct javadoc errors in Matrix3f and Quaternion

This commit is contained in:
Stephen Gold 2020-04-18 14:36:39 -07:00
parent a42103651c
commit a1dcbf9b06
2 changed files with 3 additions and 2 deletions

View File

@ -1161,7 +1161,7 @@ public final class Matrix3f implements Savable, Cloneable, java.io.Serializable
* 0.0 1.0 0.0
* 0.0 0.0 1.0
* ]
* <pre>
* </pre>
*
* @return the string representation of this object.
*/

View File

@ -309,7 +309,8 @@ public final class Quaternion implements Savable, Cloneable, java.io.Serializabl
/**
* <code>toAngles</code> returns this quaternion converted to Euler rotation
* angles (x,y,z) aka (pitch, yaw, roll).<br/>
* angles (x,y,z) aka (pitch, yaw, roll).
*
* Note that the result is not always 100% accurate due to the implications of euler angles.
* @see <a href="http://www.euclideanspace.com/maths/geometry/rotations/conversions/quaternionToEuler/index.htm">http://www.euclideanspace.com/maths/geometry/rotations/conversions/quaternionToEuler/index.htm</a>
*