computeIntersectionPointLine abstract method

void computeIntersectionPointLine(
  1. Coordinate p,
  2. Coordinate p1,
  3. Coordinate p2
)

Compute the intersection of a point p and the line p1-p2. This function computes the bool value of the hasIntersection test. The actual value of the intersection (if there is one) is equal to the value of p.

Implementation

void computeIntersectionPointLine(Coordinate p, Coordinate p1, Coordinate p2);