mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-06 02:48:27 +00:00
Update variable name
This commit is contained in:
parent
f568f52fb4
commit
28cc6ce3d3
@ -60,13 +60,13 @@ impl ValidationCheck<Shell> for CurveGeometryMismatch {
|
|||||||
geometry: &'r Geometry,
|
geometry: &'r Geometry,
|
||||||
config: &'r ValidationConfig,
|
config: &'r ValidationConfig,
|
||||||
) -> impl Iterator<Item = Self> + 'r {
|
) -> impl Iterator<Item = Self> + 'r {
|
||||||
let edges_and_surfaces =
|
let half_edges_and_surfaces =
|
||||||
object.all_half_edges_with_surface().collect::<Vec<_>>();
|
object.all_half_edges_with_surface().collect::<Vec<_>>();
|
||||||
|
|
||||||
edges_and_surfaces
|
half_edges_and_surfaces
|
||||||
.clone()
|
.clone()
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.cartesian_product(edges_and_surfaces)
|
.cartesian_product(half_edges_and_surfaces)
|
||||||
.filter_map(
|
.filter_map(
|
||||||
|((half_edge_a, surface_a), (half_edge_b, surface_b))| {
|
|((half_edge_a, surface_a), (half_edge_b, surface_b))| {
|
||||||
// We only care about edges referring to the same curve.
|
// We only care about edges referring to the same curve.
|
||||||
|
Loading…
Reference in New Issue
Block a user