Matrix.IsInvertible Property

Gets a value indicating whether this Matrix is invertible.

Namespace: Aurigma.GraphicsMill.Transforms
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public bool IsInvertible { get; }

Property Value

true if this Matrix is invertible; otherwise, false.

Remarks

The matrix cannot be inverted when it is singular, i.e. its determinant is 0. Therefore you can just check the Determinant property instead of this one.

See Also

Reference