Fixed code formatting

This commit is contained in:
Yuri Edward 2021-10-21 15:10:26 +02:00
parent a64417870b
commit 82b8ac84a0
1 changed files with 15 additions and 12 deletions

View File

@ -233,13 +233,16 @@ impl<T: Scalar, const D: usize> Scale<T, D> {
where
T: ClosedDiv + One + Zero,
{
return self.vector.map(|e| {
return self
.vector
.map(|e| {
if e != T::zero() {
return T::one() / e;
} else {
return T::zero();
}
}).into();
})
.into();
}
/// Converts this Scale into its equivalent homogeneous transformation matrix.
@ -302,7 +305,7 @@ impl<T: Scalar, const D: usize> Scale<T, D> {
#[inline]
pub fn try_inverse_mut(&mut self) -> bool
where
T: ClosedDiv + One + Zero
T: ClosedDiv + One + Zero,
{
if let Some(v) = self.try_inverse() {
self.vector = v.vector;