set method

void set(
  1. int row,
  2. int column,
  3. int dimensionValue
)

Changes the value of one of this IntersectionMatrixs elements.

@param row the row of this IntersectionMatrix, indicating the interior, boundary or exterior of the first Geometry @param column the column of this IntersectionMatrix, indicating the interior, boundary or exterior of the second Geometry @param dimensionValue the new value of the element

Implementation

void set(int row, int column, int dimensionValue) {
  matrix[row][column] = dimensionValue;
}