identity method

Matrix3 identity()

Implementation

Matrix3 identity() {
  set(1, 0, 0, 0, 1, 0, 0, 0, 1);

  return this;
}