/**
  * Copy constructor.
  */
 public Matrix2x2f(MatrixInpector other)
 {
     other.getInto(this);
 }
 /**
  * Copy constructor.
  */
 public Matrix3x3d(MatrixInpector other)
 {
     other.getInto(this);
 }