[]
        
(Showing Draft Content)

C1.Util.DX.Matrix3x2.InvertRef

InvertRef Method

InvertRef(ref Matrix3x2)

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

Declaration
public static bool InvertRef(ref Matrix3x2 matrix)
Parameters
Type Name Description
Matrix3x2 matrix

The matrix whose inverse is to be calculated.

Returns
Type Description
bool

true if matrix was converted successfully; otherwise, false.

InvertRef(out Matrix3x2, ref Matrix3x2)

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

Declaration
public static bool InvertRef(out Matrix3x2 result, ref Matrix3x2 matrix)
Parameters
Type Name Description
Matrix3x2 result

When the method completes, contains the inverse of the specified matrix.

Matrix3x2 matrix

The matrix whose inverse is to be calculated.

Returns
Type Description
bool

true if matrix was converted successfully; otherwise, false.