indexOfAfterStatic static method

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

Implementation

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