Matrix3x2.Invert(Matrix3x2, Matrix3x2) Method
Definition
Inverts the specified matrix. The return value indicates whether the operation succeeded.
public:
static bool Invert(System::Numerics::Matrix3x2 matrix, [Runtime::InteropServices::Out] System::Numerics::Matrix3x2 % result);
public static bool Invert (System.Numerics.Matrix3x2 matrix, out System.Numerics.Matrix3x2 result);
static member Invert : System.Numerics.Matrix3x2 * Matrix3x2 -> bool
Public Shared Function Invert (matrix As Matrix3x2, ByRef result As Matrix3x2) As Boolean
Parameters
- matrix
- Matrix3x2
The matrix to invert.
- result
- Matrix3x2
When this method returns, contains the inverted matrix if the operation succeeded.
Returns
true
if matrix
was converted successfully; otherwise, false
.