Update argument name

This commit is contained in:
Hanno Braun 2024-03-18 12:33:12 +01:00
parent 5f3823064c
commit 4d1c0c3239

View File

@ -29,8 +29,8 @@ impl Approx for (&Cycle, &SurfaceGeometry) {
let half_edges = cycle let half_edges = cycle
.half_edges() .half_edges()
.iter() .iter()
.map(|edge| { .map(|half_edge| {
(edge.deref(), surface) (half_edge.deref(), surface)
.approx_with_cache(tolerance, cache, core) .approx_with_cache(tolerance, cache, core)
}) })
.collect(); .collect();