Computes the inverse of a 3d matrix.
Namespace:
ceometric.VectorGeometryAssembly: ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)
Syntax
C# |
---|
public Matrix3d Invert() |
Visual Basic (Declaration) |
---|
Public Function Invert As Matrix3d |
Visual C++ |
---|
public: Matrix3d^ Invert() |
Return Value
Returns the inverse of the matrix.
Remarks
A matrix is invertible if its determinant is not zero. This is, its column and row vectors
must be linearly independent.
Exceptions
Exception | Condition |
---|---|
System..::.ArithmeticException | The matrix has zero determinant. |