Skip to content

Commit d64e799

Browse files
authored
Fixes #909 (#917)
1 parent 7643a24 commit d64e799

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/geometry/rotation_interpolation.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ impl<T: SimdRealField> Rotation3<T> {
7474
where
7575
T: RealField,
7676
{
77-
let q1 = Rotation3::from(*self);
78-
let q2 = Rotation3::from(*other);
77+
let q1 = UnitQuaternion::from(*self);
78+
let q2 = UnitQuaternion::from(*other);
7979
q1.try_slerp(&q2, t, epsilon).map(|q| q.into())
8080
}
8181
}

0 commit comments

Comments
 (0)