[]
Inverts the matrix.
public static bool InvertRef(ref Matrix4x4 value)
Type | Name | Description |
---|---|---|
Matrix4x4 | value | The matrix whose inverse is to be calculated. |
Type | Description |
---|---|
bool | true if matrix was converted successfully; otherwise, false. |
Calculates the inverse of the specified matrix.
public static bool InvertRef(out Matrix4x4 result, ref Matrix4x4 value)
Type | Name | Description |
---|---|---|
Matrix4x4 | result | When the method completes, contains the inverse of the specified matrix. |
Matrix4x4 | value | The matrix whose inverse is to be calculated. |
Type | Description |
---|---|
bool | true if matrix was converted successfully; otherwise, false. |