mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-10 21:08:27 +00:00
Refactor to prepare for follow-on change
This commit is contained in:
parent
a06a8c0102
commit
3ddc250bc8
@ -113,12 +113,17 @@ impl ShellValidationError {
|
||||
}
|
||||
}
|
||||
|
||||
for half_edge in unmatched_half_edges.into_values().cloned() {
|
||||
errors.push(
|
||||
Self::HalfEdgeHasNoSibling(HalfEdgeHasNoSibling { half_edge })
|
||||
unmatched_half_edges
|
||||
.into_values()
|
||||
.cloned()
|
||||
.for_each(|half_edge| {
|
||||
errors.push(
|
||||
Self::HalfEdgeHasNoSibling(HalfEdgeHasNoSibling {
|
||||
half_edge,
|
||||
})
|
||||
.into(),
|
||||
);
|
||||
}
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
/// Check that non-sibling half-edges are not coincident
|
||||
|
Loading…
Reference in New Issue
Block a user