Package

geotrellis.vector

voronoi

Permalink

package voronoi

Visibility
  1. Public
  2. All

Type Members

  1. case class Delaunay(verts: Array[Point]) extends Product with Serializable

    Permalink

    A class for triangulating a set of points to satisfy the delaunay property.

    A class for triangulating a set of points to satisfy the delaunay property. Each resulting triangle's circumscribing circle will contain no other points of the input set.

  2. trait DelaunayTriangulationArrayMethods extends MethodExtensions[Array[Point]]

    Permalink
  3. trait DelaunayTriangulationMethods extends MethodExtensions[Traversable[Point]]

    Permalink
  4. class HalfEdge[V, F] extends AnyRef

    Permalink
  5. trait Implicits extends AnyRef

    Permalink
  6. class Voronoi extends AnyRef

    Permalink

    A class to compute the Voronoi diagram of a collection of points.

    A class to compute the Voronoi diagram of a collection of points. The Voronoi diagram partitions the plane into a set of non-overlapping convex polygonal cells in one-to-one correspondence with the input points. The cells are defined as the region in the plane closer to the corresponding point than any other point.

    This class is a simple wrapper around functionality provided by JTS. That package elected to compute the Voronoi cells bounded by an arbitrary bounding triangle. While this bounding triangle is large, it is not infinite nor user-specifiable. If the target point set inhabits a region that is small with respect to the domain of interest, you may have to handle cell boundaries.

  7. trait VoronoiDiagramArrayMethods extends MethodExtensions[Array[Point]]

    Permalink
  8. trait VoronoiDiagramMethods extends MethodExtensions[Traversable[Point]]

    Permalink

Value Members

  1. object HalfEdge

    Permalink
  2. object Implicits extends Implicits

    Permalink
  3. object Predicates

    Permalink

Ungrouped