All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.ext.traveltime.geometry.DelaunayTriangulation Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
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> edges();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy