trait TileCropMethods[T <: CellGrid[Int]] extends CropMethods[T]
- Alphabetic
- By Inheritance
- TileCropMethods
- CropMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
crop(srcExtent: Extent, extent: Extent, options: Options): T
Given a source Extent, a destination extent, and some cropping options, produce a cropped Tile.
-
abstract
def
crop(gridBounds: GridBounds[Int], options: Options): T
Given a GridBounds and some cropping options, crop.
Given a GridBounds and some cropping options, crop.
- Definition Classes
- CropMethods
-
abstract
def
self: T
- Definition Classes
- MethodExtensions
Concrete Value Members
-
def
crop(srcExtent: Extent, extent: Extent): T
Given a source Extent and a destination extent produce a cropped Tile.
-
def
crop(colMin: Int, rowMin: Int, colMax: Int, rowMax: Int): T
Given the starting and stopping columns and rows, crop.
Given the starting and stopping columns and rows, crop.
- Definition Classes
- CropMethods
-
def
crop(colMin: Int, rowMin: Int, colMax: Int, rowMax: Int, options: Options): T
Given the starting and stopping columns and rows and some cropping options, crop.
Given the starting and stopping columns and rows and some cropping options, crop.
- Definition Classes
- CropMethods
-
def
crop(cols: Int, rows: Int): T
Given a number of columns and rows for the desired output, crop.
Given a number of columns and rows for the desired output, crop.
- Definition Classes
- CropMethods
-
def
crop(cols: Int, rows: Int, options: Options): T
Given a number of columns and rows for the desired output and some cropping options, crop.
Given a number of columns and rows for the desired output and some cropping options, crop.
- Definition Classes
- CropMethods
-
def
crop(windows: Seq[GridBounds[Int]]): Iterator[(GridBounds[Int], T)]
Crop out multiple GridBounds windows.
Crop out multiple GridBounds windows.
- Definition Classes
- CropMethods
-
def
crop(gridBounds: GridBounds[Int]): T
Given a GridBounds, crop.
Given a GridBounds, crop.
- Definition Classes
- CropMethods