Packages

trait IndexedPointSet extends Serializable

Provides an interface to a collection of Coordinates that have integer indices. The wrapped collection may be sparsely indexed.

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IndexedPointSet
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def getX(i: Int): Double
  2. abstract def getY(i: Int): Double
  3. abstract def getZ(i: Int): Double
  4. abstract def length: Int

    Returns the number of points in the collection.

Concrete Value Members

  1. def apply(i: Int): Coordinate
  2. def distance(i1: Int, i2: Int): Double
  3. def getCoordinate(i: Int): Coordinate

    Returns the coordinate at index i.

  4. def getPoint(i: Int): Point