[]
Inverts the specified matrix. The return value indicates whether the operation succeeded.
public static bool InvertRef(ref Matrix3x2 matrix)
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)
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. |