identity method

Matrix4 identity()

Implementation

Matrix4 identity() {
  setValues(1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0,
      0.0, 1.0);

  return this;
}