identity method

Mat33 identity()

Set this matrixs value as an idenity matrix

Implementation

Mat33 identity() {
  set( 1, 0, 0, 0, 1, 0, 0, 0, 1 );
  return this;
}