[]
Inverts the matrix if possible. Returns the inverted matrix if the operation succeeded.
public Matrix Invert()
Public Function Invert() As Matrix
Type | Description |
---|---|
Matrix | The inverted matrix or null. |
Inverts the matrix if possible. The return value indicates whether the operation succeeded.
public bool Invert(out Matrix result)
Public Function Invert(ByRef result As Matrix) As Boolean
Type | Name | Description |
---|---|---|
Matrix | result | When this method returns, contains the inverted matrix if the operation succeeded. |
Type | Description |
---|---|
bool | true if the matrix was inverted successfully; otherwise, false. |