Update name of variable

This commit is contained in:
Hanno Braun 2025-02-24 19:26:26 +01:00
parent 634c427e11
commit a72690f074

View File

@ -10,7 +10,7 @@ pub struct Sketch {
impl Sketch {
pub fn to_face(&self, surface: Plane) -> Face {
let vertices = self
let half_edges = self
.points
.iter()
.copied()
@ -21,7 +21,7 @@ impl Sketch {
})
.map(|vertex| Handle::new(HalfEdge::new(vertex)));
Face::new(surface, vertices)
Face::new(surface, half_edges)
}
}