diff --git a/crates/fj-core/src/algorithms/approx/half_edge.rs b/crates/fj-core/src/algorithms/approx/half_edge.rs index e6637c0f3..d2b3f6931 100644 --- a/crates/fj-core/src/algorithms/approx/half_edge.rs +++ b/crates/fj-core/src/algorithms/approx/half_edge.rs @@ -82,6 +82,9 @@ pub struct HalfEdgeApprox { /// Cache for half-edge approximations #[derive(Default)] pub struct HalfEdgeApproxCache { - vertex: VertexApproxCache, - curve: CurveApproxCache, + /// Cache for vertex approximations + pub vertex: VertexApproxCache, + + /// Cache for curve approximations + pub curve: CurveApproxCache, }