copy method

Mat33 copy(
  1. Mat33 m
)

copy from m tho this matrix

Implementation

Mat33 copy(Mat33  m ) {
  for (int i = 0; i < 9; i ++ ){ elements[ i ] = m.elements[ i ];}
  return this;
}