mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-04 18:08:26 +00:00
Update comments
This commit is contained in:
parent
fccfbe1b0c
commit
f9eb492885
@ -69,12 +69,13 @@ impl ValidationCheck<Shell> for CurveGeometryMismatch {
|
||||
.cartesian_product(half_edges_and_surfaces)
|
||||
.filter_map(
|
||||
|((half_edge_a, surface_a), (half_edge_b, surface_b))| {
|
||||
// We only care about edges referring to the same curve.
|
||||
// We only care about half-edges referring to the same
|
||||
// curve.
|
||||
if half_edge_a.curve() != half_edge_b.curve() {
|
||||
return None;
|
||||
}
|
||||
|
||||
// No need to check an edge against itself.
|
||||
// No need to check a half-edge against itself.
|
||||
if half_edge_a == half_edge_b {
|
||||
return None;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user