Skip to content

Commit

Permalink
fix string
Browse files Browse the repository at this point in the history
  • Loading branch information
dashedman committed Jun 9, 2024
1 parent b197b6c commit 00ffa1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bvh/bvh_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ impl<T: BHValue, const D: usize> Bvh<T, D> {
let shape_aabb = shapes[shape_index].aabb();
assert!(
expected_outer_aabb.approx_contains_aabb_eps(&shape_aabb, T::epsilon()),
"{}", "Shape's Aabb lies outside the expected bounds.\n\tBounds: {expected_outer_aabb}\n\tShape: {shape_aabb}"
"Shape's Aabb lies outside the expected bounds.\n\tBounds: {expected_outer_aabb}\n\tShape: {shape_aabb}"
);
}
}
Expand Down

0 comments on commit 00ffa1a

Please sign in to comment.