Matrix3x2.Invert(Matrix3x2, Matrix3x2) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.