public Mat3 GetInverse() { Mat3 mat = this; mat.Inverse(); return(mat); }
public void GetInverse(out Mat3 result) { result = this; result.Inverse(); }