Package com.luciad.shape
Interface ILcdEditableMatrixView
- All Superinterfaces:
ILcdMatrixView
- All Known Subinterfaces:
ILcdEditablePolarMatrixView
,ILcdEditableReferencedMatrixView
,ILcdEditableVisibilityMatrixView
,ILcdLOSCoverageMatrix
An
ILcdEditableMatrixView
is an ILcdMatrixView
of which the
values and associated points can be set.-
Method Summary
Modifier and TypeMethodDescriptionvoid
setAssociatedPointX
(int aColumnIndex, int aRowIndex, double aValue) Set the x-coordinate of the associated point at the column indexaColumnIndex
and the row indexaRowIndex
to the specifieddouble
value.void
setAssociatedPointY
(int aColumnIndex, int aRowIndex, double aValue) Set the y-coordinate of the associated point at the column indexaColumnIndex
and the row indexaRowIndex
to the specifieddouble
value.void
setValue
(int aColumnIndex, int aRowIndex, double aValue) Set the value of the matrix pixel corresponding to the column indexaColumnIndex
and the row indexaRowIndex
to the specifieddouble
value.Methods inherited from interface com.luciad.shape.ILcdMatrixView
getColumnCount, getRowCount, getValue, retrieveAssociatedPointX, retrieveAssociatedPointY
-
Method Details
-
setValue
void setValue(int aColumnIndex, int aRowIndex, double aValue) Set the value of the matrix pixel corresponding to the column indexaColumnIndex
and the row indexaRowIndex
to the specifieddouble
value.- Parameters:
aColumnIndex
- the column index.aRowIndex
- the row index.aValue
- the new value.- See Also:
-
setAssociatedPointX
void setAssociatedPointX(int aColumnIndex, int aRowIndex, double aValue) Set the x-coordinate of the associated point at the column indexaColumnIndex
and the row indexaRowIndex
to the specifieddouble
value.- Parameters:
aColumnIndex
- the column index.aRowIndex
- the row index.aValue
- the new value.- See Also:
-
setAssociatedPointY
void setAssociatedPointY(int aColumnIndex, int aRowIndex, double aValue) Set the y-coordinate of the associated point at the column indexaColumnIndex
and the row indexaRowIndex
to the specifieddouble
value.- Parameters:
aColumnIndex
- the column index.aRowIndex
- the row index.aValue
- the new value.- See Also:
-