void clear()

Clears the matrix to black.

Source

void clear() {
  _content.fillRange(0, _content.length, 0);
}