org.opentripplanner.ext.traveltime.geometry.DelaunayTriangulation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.ext.traveltime.geometry;
/**
* A Delaunay triangulation (adapted to isoline building).
*
* A simple interface returning a collection (an iterable) of DelaunayEdges. The interface is kept
* minimal for isoline building purposes.
*
* @author laurent
* @param The value stored for each node.
*/
public interface DelaunayTriangulation {
int edgesCount();
Iterable extends DelaunayEdge> edges();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy