Make fields of HalfEdgeApproxCache public

This commit is contained in:
Hanno Braun 2024-06-25 20:20:41 +02:00
parent 4582a17b48
commit afa741d29f

View File

@ -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,
}