Click or drag to resize
DigitalRuneMatrixOrder Enumeration
The matrix order defines in which order the matrix elements would be stored in a 1D array.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public enum MatrixOrder
Members
  Member nameValueDescription
ColumnMajor0 The matrix is stored in column-major order. (Example: M00, M10, M01, M11, M02, M12)
RowMajor1 The matrix is stored in row-major order. (Example: M00, M01, M02, M10, M11, M12)
Remarks
The enumeration values are explained using following example matrix:
M00 M01 M02
M10 M11 M12
See Also