fixed cargo fmt error

This commit is contained in:
Joshua Smith 2022-03-26 17:32:12 -05:00 committed by Saurabh
parent 1e1135ef64
commit c2cfe4a7ce
1 changed files with 1 additions and 1 deletions

View File

@ -411,7 +411,7 @@ where
#[must_use] #[must_use]
pub fn slerp(&self, other: &Self, t: T) -> Self { pub fn slerp(&self, other: &Self, t: T) -> Self {
let delta = other / self; let delta = other / self;
self * Self::new(delta.angle()*t) self * Self::new(delta.angle() * t)
} }
} }