Skip to content

Commit 9598744

Browse files
authored
Make epsilon more forgiving in euler_angles_ordered (#1489)
1 parent 9687b8b commit 9598744

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/geometry/rotation_specialization.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1064,7 +1064,7 @@ impl<T: SimdRealField> Rotation3<T> {
10641064
T: RealField + Copy,
10651065
{
10661066
let mut angles = [T::zero(); 3];
1067-
let eps = T::from_subset(&1e-7);
1067+
let eps = T::from_subset(&1e-6);
10681068
let two = T::from_subset(&2.0);
10691069

10701070
if extrinsic {

0 commit comments

Comments
 (0)