Matrix.Elements Property

Gets an array of floating-point values that represents the elements of this Matrix.

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

Syntax

C#
public float[] Elements { get; }

Property Value

An array of floating-point values that represents the elements of this Matrix.

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