Interface ILcdEditableMatrixView

All Superinterfaces:
ILcdMatrixView
All Known Subinterfaces:
ILcdEditablePolarMatrixView, ILcdEditableReferencedMatrixView, ILcdEditableVisibilityMatrixView, ILcdLOSCoverageMatrix

public interface ILcdEditableMatrixView extends ILcdMatrixView
An ILcdEditableMatrixView is an ILcdMatrixView of which the values and associated points can be set.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    setAssociatedPointX(int aColumnIndex, int aRowIndex, double aValue)
    Set the x-coordinate of the associated point at the column index aColumnIndex and the row index aRowIndex to the specified double value.
    void
    setAssociatedPointY(int aColumnIndex, int aRowIndex, double aValue)
    Set the y-coordinate of the associated point at the column index aColumnIndex and the row index aRowIndex to the specified double value.
    void
    setValue(int aColumnIndex, int aRowIndex, double aValue)
    Set the value of the matrix pixel corresponding to the column index aColumnIndex and the row index aRowIndex to the specified double value.
  • Method Details

    • setValue

      void setValue(int aColumnIndex, int aRowIndex, double aValue)
      Set the value of the matrix pixel corresponding to the column index aColumnIndex and the row index aRowIndex to the specified double 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 index aColumnIndex and the row index aRowIndex to the specified double 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 index aColumnIndex and the row index aRowIndex to the specified double value.
      Parameters:
      aColumnIndex - the column index.
      aRowIndex - the row index.
      aValue - the new value.
      See Also: