org.openlr.map.Path Maven / Gradle / Ivy
package org.openlr.map;
import org.locationtech.jts.geom.LineString;
import java.util.List;
public interface Path> {
List getLines();
double getPositiveOffset();
double getNegativeOffset();
PointAlongLine getStart();
PointAlongLine getEnd();
LineString getGeometry();
double getLength();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy