Update function name

This commit is contained in:
Hanno Braun 2023-02-22 11:57:44 +01:00
parent 1809244fb7
commit e25c3ee696

View File

@ -43,7 +43,7 @@ impl Approx for (&Handle<HalfEdge>, &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,