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

Matrix.Elements Property

Gets a reference to the array which stores the matrix elements.

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

Syntax

Visual Basic
Public ReadOnly Property Elements As Single()
C#
public float[] Elements { get; }

Property Value

A reference to the array which stores the matrix elements.

Remarks

This array stores 9 elements - the first triple represents the first row, the second triple - the second row, and the third triple is the third row.

Note

This property returns a reference to the array rather than a copy. It means that if you modify some element in this array, the changes will immediately reflect in the matrix.

See Also

Reference