org.openlr.map.PointAlongLine Maven / Gradle / Ivy
package org.openlr.map;
import org.locationtech.jts.geom.Point;
public interface PointAlongLine> {
L getLine();
double getPositiveOffset();
double getNegativeOffset();
boolean atStart();
boolean atEnd();
Point getGeometry();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy