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