ComponentOne Bitmap for UWP
C1.UWP.DX Assembly / C1.Util.DX Namespace / Matrix3x2 Structure / InvertRef Method / InvertRef(Matrix3x2,Matrix3x2) Method
When the method completes, contains the inverse of the specified matrix.
The matrix whose inverse is to be calculated.

In This Topic
    InvertRef(Matrix3x2,Matrix3x2) Method
    In This Topic
    Inverts the specified matrix. The return value indicates whether the operation succeeded.
    Syntax
    'Declaration
     
    Public Overloads Shared Function InvertRef( _
       ByRef result As Matrix3x2, _
       ByRef matrix As Matrix3x2 _
    ) As System.Boolean
    public static System.bool InvertRef( 
       out Matrix3x2 result,
       ref Matrix3x2 matrix
    )

    Parameters

    result
    When the method completes, contains the inverse of the specified matrix.
    matrix
    The matrix whose inverse is to be calculated.

    Return Value

    true if matrix was converted successfully; otherwise, false.
    See Also