object ArrayMultibandTile extends Serializable
The companion object for the ArrayMultibandTile type.
- Alphabetic
- By Inheritance
- ArrayMultibandTile
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
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.
-
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.
-
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.
-
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.
-
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.