| java.lang.Object javax.media.jai.TileCopy
TileCopy | final class TileCopy (Code) | | A (Raster, X, Y) tuple.
|
Field Summary | |
Raster | tile The tile's Raster data. | int | tileX The tile's column within the image tile grid. | int | tileY The tile's row within the image tile grid. |
Constructor Summary | |
| TileCopy(Raster tile, int tileX, int tileY) Constructs a TileCopy object given the tile's Raster data
and its location in the tile grid. |
tile | Raster tile(Code) | | The tile's Raster data.
|
tileX | int tileX(Code) | | The tile's column within the image tile grid.
|
tileY | int tileY(Code) | | The tile's row within the image tile grid.
|
TileCopy | TileCopy(Raster tile, int tileX, int tileY)(Code) | | Constructs a TileCopy object given the tile's Raster data
and its location in the tile grid.
Parameters: tile - the Raster containing the tile's data. Parameters: tileX - the tile's X position in the tile grid. Parameters: tileY - the tile's X position in the tile grid. |
|
|