setAll method

void setAll(
  1. int dimensionValue
)

Changes the elements of this IntersectionMatrix to dimensionValue .

@param dimensionValue the dimension value to which to set this IntersectionMatrix s elements. Possible values {TRUE, FALSE, DONTCARE, 0, 1, 2} .

Implementation

void setAll(int dimensionValue) {
  for (int ai = 0; ai < 3; ai++) {
    for (int bi = 0; bi < 3; bi++) {
      matrix[ai][bi] = dimensionValue;
    }
  }
}