mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-07 03:18:30 +00:00
Update name of variable
This commit is contained in:
parent
634c427e11
commit
a72690f074
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user