Skip to content

Commit

Permalink
Add javadoc to RotationBuilder#origin
Browse files Browse the repository at this point in the history
  • Loading branch information
ApexModder committed Dec 15, 2024
1 parent 4203e89 commit 169436e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ public final class RotationBuilder {
private float angle;
private boolean rescale;

/**
* Sets the origin point for this rotation.
*/
public RotationBuilder origin(float x, float y, float z) {
this.origin = new Vector3f(x, y, z);
return this;
Expand Down

0 comments on commit 169436e

Please sign in to comment.