Update name of function parameter

This commit is contained in:
Hanno Braun 2025-02-24 20:05:11 +01:00
parent 37226202b6
commit 1f914948c7

View File

@ -17,7 +17,7 @@ impl Sketch {
let half_edges = vertices
.into_iter()
.map(|vertex| Handle::new(HalfEdge { start: vertex }));
.map(|start| Handle::new(HalfEdge { start }));
Face::new(surface, half_edges)
}