| MatrixOrder Enumeration |
The matrix order defines in which order the matrix elements would be stored in a 1D array.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax Public Enumeration MatrixOrder
public enum class MatrixOrder
Members
| Member name | Value | Description |
---|
| ColumnMajor | 0 |
The matrix is stored in column-major order. (Example: M00, M10, M01, M11, M02, M12)
|
| RowMajor | 1 |
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:
See Also