Class LoopCrosser

LoopCrosser is a helper class for determining whether two loops cross. It is instantiated twice for each pair of loops to be tested, once for the pair (A,B) and once for the pair (B,A), in order to be able to process edges in either loop nesting order.

class LoopCrosser ;

Constructors

NameDescription
this (a, b, relation, swapped) If "swapped" is true, the loops A and B have been swapped. This affects how arguments are passed to the given loop relation, since for example A.Contains(B) is not the same as B.Contains(A).

Methods

NameDescription
aCrossingTarget () Returns the crossing targets for the loop relation, taking into account whether the loops have been swapped.
cellCrossesCell (a_clipped, b_clipped) Given two index cells, return true if there are any edge crossings or wedge crossings within those cells.
hasCrossingRelation (ai, bi) Given two iterators positioned such that ai->id().Contains(bi->id()), return true if there is a crossing relationship anywhere within ai->id(). Specifically, this method returns true if there is an edge crossing, a wedge crossing, or a point P that matches both "crossing targets". Advances both iterators past ai->id().