Make name of variable more explicit

This commit is contained in:
Hanno Braun 2025-04-11 13:29:19 +02:00
parent 9b63607f61
commit b855728116

View File

@ -37,11 +37,12 @@ impl Sketch {
.map(|segment| {
let SketchSegment::Line { start: point_local } = segment;
let point = surface.geometry.point_from_local(point_local);
let vertex = Handle::new(Vertex::new(point));
let point_global =
surface.geometry.point_from_local(point_local);
let vertex = Handle::new(Vertex::new(point_global));
vertices_by_local_point
.entry(point)
.entry(point_global)
.or_default()
.push(vertex.clone());