This documentation is for the old version. Go to the latest Graphics Mill docs

Matrix.IsInvertible Property

Gets a value that specifies whether the matrix can be inverted.

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

Syntax

Visual Basic
Public ReadOnly Property IsInvertible As Boolean
C#
public bool IsInvertible { get; }

Property Value

A value that is true when the matrix can be inverted, false otherwise.

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