diff --git a/crates/fj-core/src/algorithms/approx/cycle.rs b/crates/fj-core/src/algorithms/approx/cycle.rs index 256487eee..c2495fb0b 100644 --- a/crates/fj-core/src/algorithms/approx/cycle.rs +++ b/crates/fj-core/src/algorithms/approx/cycle.rs @@ -11,7 +11,7 @@ use crate::{ }; use super::{ - half_edge::{HalfEdgeApprox, HalfEdgeApproxCache}, + half_edge::{approx_half_edge, HalfEdgeApprox, HalfEdgeApproxCache}, Approx, ApproxPoint, Tolerance, }; @@ -32,8 +32,7 @@ impl Approx for (&Cycle, &Handle) { .half_edges() .iter() .map(|half_edge| { - (half_edge, surface) - .approx_with_cache(tolerance, cache, geometry) + approx_half_edge(half_edge, surface, tolerance, cache, geometry) }) .collect();