Prepare for follow-on change

This commit is contained in:
Hanno Braun 2025-04-11 13:27:41 +02:00
parent 8b9ad61452
commit 6aece2721f

View File

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