Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Vrixyz committed Jun 21, 2024
1 parent 8e8faa6 commit e4e3135
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/pipeline/physics_pipeline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -995,12 +995,12 @@ mod test {
#[cfg(feature = "dim2")]
assert!(rotation.is_finite());
#[cfg(feature = "dim3")]
(|| {
{
assert!(translation.z.is_finite());
let rotation = rotation.scaled_axis();
assert!(rotation.x.is_finite());
assert!(rotation.y.is_finite());
assert!(rotation.z.is_finite());
})();
assert!(rotation.i.is_finite());
assert!(rotation.j.is_finite());
assert!(rotation.k.is_finite());
assert!(rotation.w.is_finite());
}
}
}

0 comments on commit e4e3135

Please sign in to comment.