Matrix3x2::Invert Method

Inverts the specified matrix. The return value indicates whether the operation succeeded.

Namespace:  System.Numerics
Assembly:  System.Numerics.Vectors (in System.Numerics.Vectors.dll)

public:
static bool Invert(
	Matrix3x2 matrix, 
	[OutAttribute] Matrix3x2% result
)

Parameters

matrix
Type: System.Numerics::Matrix3x2

The matrix to invert.

result
Type: System.Numerics::Matrix3x2%

When this method returns, contains the inverted matrix if the operation succeeded.

Return Value

Type: System::Boolean
true if matrix was converted successfully; otherwise, false.
Show: