set method

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

Implementation

void set(int x, int y, int value) {
  _bytes[y][x] = value;
}