Packages

object ArrayMultibandTile extends Serializable

The companion object for the ArrayMultibandTile type.

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

Value Members

  1. def alloc(t: CellType, bands: Int, cols: Int, rows: Int): ArrayMultibandTile

    "Allocate" a new ArrayMultibandTile.

    "Allocate" a new ArrayMultibandTile. Arrays for all of the bands are allocated, then fused into an ArrayMultibandTile.

    bands

    The number of bands that the new ArrayMultibandTile should have.

    cols

    The number of columns that the new ArrayMultibandTile should have.

    rows

    The number of rows that the new ArrayMultibandTile should have.

    returns

    The new ArrayMultibandTile.

  2. def apply(bands: Array[Tile]): ArrayMultibandTile

    Create a new ArrayMultibandTile from a given Array of Tile objects.

    Create a new ArrayMultibandTile from a given Array of Tile objects.

    bands

    The array of source Tile objects.

    returns

    An ArrayMultibandTile whose bands are given tiles.

  3. def apply(bands: Traversable[Tile]): ArrayMultibandTile

    Create a new ArrayMultibandTile from a given Traversable of Tile objects.

    Create a new ArrayMultibandTile from a given Traversable of Tile objects.

    bands

    The Traversable collection of source Tile objects.

    returns

    An ArrayMultibandTile whose bands are given tiles.

  4. def apply(bands: Tile*): ArrayMultibandTile

    Create a new ArrayMultibandTile from a given bunch of Tile objects.

    Create a new ArrayMultibandTile from a given bunch of Tile objects.

    bands

    The sequence of source Tile objects.

    returns

    An ArrayMultibandTile whose bands are given tiles.

  5. def empty(t: CellType, bands: Int, cols: Int, rows: Int): ArrayMultibandTile

    Create an empty ArrayMultibandTile.

    Create an empty ArrayMultibandTile. Arrays for all of the bands are allocated, then fused into an ArrayMultibandTile.

    bands

    The number of bands that the new ArrayMultibandTile should have.

    cols

    The number of columns that the new ArrayMultibandTile should have.

    rows

    The number of rows that the new ArrayMultibandTile should have.

    returns

    The new ArrayMultibandTile.