mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-09 12:28:29 +00:00
Prepare for follow-on change
This commit is contained in:
parent
25542f76a0
commit
4f6c73dcbd
@ -39,7 +39,8 @@ impl Sketch {
|
|||||||
|
|
||||||
let half_edges = vertices
|
let half_edges = vertices
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.map(|start| Handle::new(HalfEdge { start }));
|
.circular_tuple_windows()
|
||||||
|
.map(|(start, _)| Handle::new(HalfEdge { start }));
|
||||||
|
|
||||||
Face::new(surface, half_edges)
|
Face::new(surface, half_edges)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user