computeIntersectsForChain method

void computeIntersectsForChain(
  1. int chainIndex0,
  2. MonotoneChainEdge mce,
  3. int chainIndex1,
  4. SegmentIntersector si,
)

Implementation

void computeIntersectsForChain(int chainIndex0, MonotoneChainEdge mce,
    int chainIndex1, SegmentIntersector si) {
  computeIntersectsForChain6(
      startIndex[chainIndex0],
      startIndex[chainIndex0 + 1],
      mce,
      mce.startIndex[chainIndex1],
      mce.startIndex[chainIndex1 + 1],
      si);
}