From c50a9274a58d0e328fa3f6bb1c6f1e06c50c13e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joel=20Nordstr=C3=B6m?= Date: Sun, 25 Oct 2020 22:11:25 +0100 Subject: [PATCH] glam::Quat::lerp normalizes internally --- src/glam.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)]