Package com.luciad.tea
Interface ILcdMatrix
- All Known Implementing Classes:
TLcdMatrix
,TLcdRasterMatrix
public interface ILcdMatrix
Deprecated.
An
ILcdMatrix
represents a regular 2D data structure
where values can be accessed through integer coordinates.
Since these integer coordinates are not normally the "true" coordinates of
the data points, it is possible to retrieve the true coordinates with the
methods getX and getY.-
Method Summary
Modifier and TypeMethodDescriptionint
Deprecated.Returns the integer height of the matrix.double
getValue
(int i, int j) Deprecated.Returns the value of the matrix at point (i,j).int
getWidth()
Deprecated.Returns the integer width of the matrix.double
getX
(int i, int j) Deprecated.Returns the "true" x-coordinate at point (i,j).double
getY
(int i, int j) Deprecated.Returns the "true" y-coordinate at point (i,j).
-
Method Details
-
getValue
double getValue(int i, int j) Deprecated.Returns the value of the matrix at point (i,j).- Parameters:
i
- The first index of the matrix point.j
- The second index of the matrix point.- Returns:
- The value of the matrix at point (i,j).
-
getX
double getX(int i, int j) Deprecated.Returns the "true" x-coordinate at point (i,j).- Parameters:
i
- The first index of the matrix point.j
- The second index of the matrix point.- Returns:
- The "true" x-coordinate at point (i,j).
-
getY
double getY(int i, int j) Deprecated.Returns the "true" y-coordinate at point (i,j).- Parameters:
i
- The first index of the matrix point.j
- The second index of the matrix point.- Returns:
- The "true" y-coordinate at point (i,j).
-
getWidth
int getWidth()Deprecated.Returns the integer width of the matrix.- Returns:
- The integer width of the matrix.
-
getHeight
int getHeight()Deprecated.Returns the integer height of the matrix.- Returns:
- The integer height of the matrix.
-
ILcdMatrixView
in com.luciad.shape.