diff --git a/src/glam.rs b/src/glam.rs index bed1532..c9e510b 100644 --- a/src/glam.rs +++ b/src/glam.rs @@ -68,7 +68,7 @@ impl Linear for Quat { impl Interpolate for Quat { #[inline(always)] fn lerp(a: Self, b: Self, t: f32) -> Self { - a.lerp(b, t).normalize() + a.lerp(b, t) } #[inline(always)]