Skip to content

Commit

Permalink
Tt seems that they forgot to add @SInCE tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
mihxil committed Nov 1, 2024
1 parent 227c495 commit 4174b00
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ public Rotation one() {

@Override
public Rotation nextRandom(Random r) {
Rotation rx = Rotation.Rx(r.nextDouble(0d, Math_2PI));
Rotation ry = Rotation.Ry(r.nextDouble(0d, Math_2PI));
Rotation rz = Rotation.Rz(r.nextDouble(0d, Math_2PI));
Rotation rx = Rotation.Rx(r.nextDouble() * Math_2PI);
Rotation ry = Rotation.Ry(r.nextDouble() * Math_2PI);
Rotation rz = Rotation.Rz(r.nextDouble() * Math_2PI);
return rx.times(ry).times(rz);
}

Expand Down

0 comments on commit 4174b00

Please sign in to comment.