diff --git a/crates/fj-core/src/algorithms/bounding_volume/edge.rs b/crates/fj-core/src/algorithms/bounding_volume/edge.rs index c958d8e48..4e243d158 100644 --- a/crates/fj-core/src/algorithms/bounding_volume/edge.rs +++ b/crates/fj-core/src/algorithms/bounding_volume/edge.rs @@ -24,7 +24,7 @@ impl super::BoundingVolume<2> for Handle { SurfacePath::Line(_) => { let geometry = geometry.of_half_edge(self); - let points = self.boundary().inner.map(|point_curve| { + let points = geometry.boundary.inner.map(|point_curve| { geometry.path.point_from_path_coords(point_curve) });