[]
Inverts the specified matrix. The return value indicates whether the operation succeeded.
public static bool InvertRef(ref Matrix3x2 matrix)
Public Shared Function InvertRef(ByRef matrix As Matrix3x2) As Boolean
| Type | Name | Description |
|---|---|---|
| Matrix3x2 | matrix | The matrix whose inverse is to be calculated. |
| Type | Description |
|---|---|
| bool | true if matrix was converted successfully; otherwise, false. |
Inverts the specified matrix. The return value indicates whether the operation succeeded.
public static bool InvertRef(out Matrix3x2 result, ref Matrix3x2 matrix)
Public Shared Function InvertRef(ByRef result As Matrix3x2, ByRef matrix As Matrix3x2) As Boolean
| 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. |
| Type | Description |
|---|---|
| bool | true if matrix was converted successfully; otherwise, false. |