Read geometry from layer in BoundingVolume impl

This commit is contained in:
Hanno Braun 2024-03-23 00:43:01 +01:00
parent 83eab225d2
commit 5fed3493a8

View File

@ -24,7 +24,7 @@ impl super::BoundingVolume<2> for Handle<HalfEdge> {
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)
});