set method

void set(
  1. int x,
  2. int y,
  3. int value
)

Implementation

void set(int x, int y, int value) {
  _matrix[y].set(x, value);
}