Make name of variable more explicit

This commit is contained in:
Hanno Braun 2025-04-11 13:28:12 +02:00
parent 6aece2721f
commit 9b63607f61

View File

@ -35,9 +35,9 @@ impl Sketch {
.iter()
.copied()
.map(|segment| {
let SketchSegment::Line { start: point } = segment;
let SketchSegment::Line { start: point_local } = segment;
let point = surface.geometry.point_from_local(point);
let point = surface.geometry.point_from_local(point_local);
let vertex = Handle::new(Vertex::new(point));
vertices_by_local_point