Prepare for follow-on change

This commit is contained in:
Hanno Braun 2025-04-07 12:36:09 +02:00
parent c8dccd539e
commit 06513f4151

View File

@ -44,11 +44,13 @@ impl Sketch {
let half_edges = vertices.into_iter().circular_tuple_windows().map(
|(start, end)| {
let curve = Handle::new(Curve {});
let is_internal = coincident_vertices.contains(&start)
&& coincident_vertices.contains(&end);
Handle::new(HalfEdge {
curve: Handle::new(Curve {}),
curve,
start,
is_internal,
})