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 TypeMethodDescriptionvoidsetAssociatedPointX(int aColumnIndex, int aRowIndex, double aValue) Set the x-coordinate of the associated point at the column indexaColumnIndexand the row indexaRowIndexto the specifieddoublevalue.voidsetAssociatedPointY(int aColumnIndex, int aRowIndex, double aValue) Set the y-coordinate of the associated point at the column indexaColumnIndexand the row indexaRowIndexto the specifieddoublevalue.voidsetValue(int aColumnIndex, int aRowIndex, double aValue) Set the value of the matrix pixel corresponding to the column indexaColumnIndexand the row indexaRowIndexto the specifieddoublevalue.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 indexaColumnIndexand the row indexaRowIndexto the specifieddoublevalue.- 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 indexaColumnIndexand the row indexaRowIndexto the specifieddoublevalue.- 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 indexaColumnIndexand the row indexaRowIndexto the specifieddoublevalue.- Parameters:
aColumnIndex- the column index.aRowIndex- the row index.aValue- the new value.- See Also:
-