indexOfAfterStatic static method

LinearLocation indexOfAfterStatic(
  1. Geometry linearGeom,
  2. Coordinate inputPt,
  3. LinearLocation minIndex
)

Implementation

static LinearLocation indexOfAfterStatic(
    Geometry linearGeom, Coordinate inputPt, LinearLocation minIndex) {
  LocationIndexOfPoint locater = new LocationIndexOfPoint(linearGeom);
  return locater.indexOfAfter(inputPt, minIndex);
}