public class Matrix
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
identifier
The id of the matrix.
|
long[] |
matrixSize
A 2 dimensional array containing number of tiles in the matrix for the columns (0) and rows (1).
|
double |
scaleDenominator
The scale of the matrix.
|
int[] |
tileSize
A 2 dimensional array representing the width, height of the tile.
|
double[] |
topLeftCorner
A 2 dimensional array representing the top-left corner of the tile.
|
| Constructor and Description |
|---|
Matrix() |
| Modifier and Type | Method and Description |
|---|---|
int |
getTileHeight()
Get the height of a tile.
|
int |
getTileWidth()
Get the width of a tile.
|
void |
postConstruct()
Validate the properties have the correct values.
|
public java.lang.String identifier
public long[] matrixSize
public double scaleDenominator
public int[] tileSize
public double[] topLeftCorner