Matrix4x4Double.Invert

Matrix4x4Double.Invert method

Attempts to calculate the inverse of the given matrix. If successful, result will contain the inverted matrix.

public static bool Invert(Matrix4x4Double matrix, out Matrix4x4Double result)
ParameterTypeDescription
matrixMatrix4x4DoubleThe source matrix to invert.
resultMatrix4x4Double&If successful, contains the inverted matrix.

Return Value

True if the source matrix could be inverted; False otherwise.

See Also