mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-08 11:58:27 +00:00
Update name of variable
This commit is contained in:
parent
634c427e11
commit
a72690f074
@ -10,7 +10,7 @@ pub struct Sketch {
|
|||||||
|
|
||||||
impl Sketch {
|
impl Sketch {
|
||||||
pub fn to_face(&self, surface: Plane) -> Face {
|
pub fn to_face(&self, surface: Plane) -> Face {
|
||||||
let vertices = self
|
let half_edges = self
|
||||||
.points
|
.points
|
||||||
.iter()
|
.iter()
|
||||||
.copied()
|
.copied()
|
||||||
@ -21,7 +21,7 @@ impl Sketch {
|
|||||||
})
|
})
|
||||||
.map(|vertex| Handle::new(HalfEdge::new(vertex)));
|
.map(|vertex| Handle::new(HalfEdge::new(vertex)));
|
||||||
|
|
||||||
Face::new(surface, vertices)
|
Face::new(surface, half_edges)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user