geotrellis.geometry

grid

package grid

Visibility
  1. Public
  2. All

Type Members

  1. case class GridLine(p1: GridPoint, p2: GridPoint) extends Ordered[GridLine] with Product with Serializable

    this represents a line segment from p1 -> p2.

  2. case class GridPoint(x: Int, y: Int) extends Ordered[GridPoint] with Product with Serializable

    this represents an (x,y) point coordinate.

  3. case class GridPolygon(edges: Seq[GridLine]) extends Product with Serializable

    a polygon is a set of lines.

Value Members

  1. object GridPolygon extends Serializable