mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-10 12:58:28 +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() {
|
unmatched_half_edges
|
||||||
errors.push(
|
.into_values()
|
||||||
Self::HalfEdgeHasNoSibling(HalfEdgeHasNoSibling { half_edge })
|
.cloned()
|
||||||
|
.for_each(|half_edge| {
|
||||||
|
errors.push(
|
||||||
|
Self::HalfEdgeHasNoSibling(HalfEdgeHasNoSibling {
|
||||||
|
half_edge,
|
||||||
|
})
|
||||||
.into(),
|
.into(),
|
||||||
);
|
);
|
||||||
}
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Check that non-sibling half-edges are not coincident
|
/// Check that non-sibling half-edges are not coincident
|
||||||
|
Loading…
Reference in New Issue
Block a user