Update error message

This commit is contained in:
Hanno Braun 2024-03-26 11:21:58 +01:00
parent f18435dd67
commit 8bdc4c4926

View File

@ -11,7 +11,7 @@ impl super::BoundingVolume<2> for &Cycle {
for half_edge in cycle.half_edges() {
let new_aabb = half_edge
.aabb(geometry)
.expect("`Edge` can always compute AABB");
.expect("`HalfEdge` can always compute AABB");
aabb = Some(aabb.map_or(new_aabb, |aabb| aabb.merged(&new_aabb)));
}