Skip to content

Commit

Permalink
Fix Quaternion.fromAxisAngleDeg() angle parameter JavaDocs (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
httpdigest committed Aug 2, 2023
1 parent 75d60fd commit 52c7d15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/joml/Quaterniond.java
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ public Quaterniond fromAxisAngleDeg(Vector3dc axis, double angle) {
* @param axisZ
* the z component of the rotation axis
* @param angle
* the angle in radians
* the angle in degrees
* @return this
*/
public Quaterniond fromAxisAngleDeg(double axisX, double axisY, double axisZ, double angle) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/joml/Quaternionf.java
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ public Quaternionf fromAxisAngleDeg(Vector3fc axis, float angle) {
* @param axisZ
* the z component of the rotation axis
* @param angle
* the angle in radians
* the angle in degrees
* @return this
*/
public Quaternionf fromAxisAngleDeg(float axisX, float axisY, float axisZ, float angle) {
Expand Down

0 comments on commit 52c7d15

Please sign in to comment.