mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-07 19:38:29 +00:00
Update argument name
This commit is contained in:
parent
8453a89ef3
commit
2cf29e6851
@ -68,11 +68,11 @@ impl ValidationCheck<Cycle> for AdjacentHalfEdgesNotConnected {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn check_cycle<'r>(
|
fn check_cycle<'r>(
|
||||||
object: &'r Cycle,
|
cycle: &'r Cycle,
|
||||||
geometry: &'r Geometry,
|
geometry: &'r Geometry,
|
||||||
config: &'r ValidationConfig,
|
config: &'r ValidationConfig,
|
||||||
) -> impl Iterator<Item = AdjacentHalfEdgesNotConnected> + 'r {
|
) -> impl Iterator<Item = AdjacentHalfEdgesNotConnected> + 'r {
|
||||||
object.half_edges().pairs().filter_map(|(first, second)| {
|
cycle.half_edges().pairs().filter_map(|(first, second)| {
|
||||||
let end_pos_of_first_half_edge = {
|
let end_pos_of_first_half_edge = {
|
||||||
let [_, end] = geometry.of_half_edge(first).boundary.inner;
|
let [_, end] = geometry.of_half_edge(first).boundary.inner;
|
||||||
geometry
|
geometry
|
||||||
|
Loading…
Reference in New Issue
Block a user