From e25c3ee6968b8130ed5cb78babe376b20303be9d Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 22 Feb 2023 11:57:44 +0100 Subject: [PATCH] Update function name --- crates/fj-kernel/src/algorithms/approx/edge.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/fj-kernel/src/algorithms/approx/edge.rs b/crates/fj-kernel/src/algorithms/approx/edge.rs index 2bcbca2e3..68ce4f163 100644 --- a/crates/fj-kernel/src/algorithms/approx/edge.rs +++ b/crates/fj-kernel/src/algorithms/approx/edge.rs @@ -43,7 +43,7 @@ impl Approx for (&Handle, &Surface) { { Some(approx) => approx, None => { - let approx = approx_global_curve( + let approx = approx_edge( half_edge.curve(), surface, range, @@ -102,7 +102,7 @@ impl HalfEdgeApprox { } } -fn approx_global_curve( +fn approx_edge( curve: &Curve, surface: &Surface, range: RangeOnPath,