public class GridEnvelope
extends java.lang.Object
Constructor and Description |
---|
GridEnvelope() |
Modifier and Type | Method and Description |
---|---|
java.util.List<java.lang.Integer> |
getHigh()
Returns a list of values representing the higher corner or ending point for the grid coordinate system,
for example (999,999) could be the high point for a grid coordinate system with origin at (0,0),
meaning that we have a grid of 1000x1000 cells.
|
java.util.List<java.lang.Integer> |
getLow()
Returns a list of values representing the lower corner or origin in terms of the grid coordinate system.
|
void |
setHigh(java.util.List<java.lang.Integer> high)
Sets the list of values representing the higher corner or ending point in the grid coordinate system.
|
void |
setLow(java.util.List<java.lang.Integer> low)
Sets the list of values representing the lower corner or origin in the grid coordinate system.
|
public java.util.List<java.lang.Integer> getLow()
public void setLow(java.util.List<java.lang.Integer> low)
low
- the list of values to be used to represent the low corner.public java.util.List<java.lang.Integer> getHigh()
public void setHigh(java.util.List<java.lang.Integer> high)
high
- the list of values to be used to represent the higher point.