getIntersection method

Coordinate getIntersection(
  1. int intIndex
)

Returns the intIndex'th intersection point

@param intIndex is 0 or 1

@return the intIndex'th intersection point

Implementation

Coordinate getIntersection(int intIndex) {
  return intPt[intIndex];
}