SA_Maths
Sapphire Suite's C++ Maths Library
Loading...
Searching...
No Matches
MatrixMajor.hpp
Go to the documentation of this file.
1// Copyright (c) 2023 Sapphire development team. All Rights Reserved.
2
3#pragma once
4
5#ifndef SAPPHIRE_MATHS_MATRIX_MAJOR_GUARD
6#define SAPPHIRE_MATHS_MATRIX_MAJOR_GUARD
7
8#include <cstdint>
9
20namespace SA
21{
23 enum class MatrixMajor : uint8_t
24 {
26 Row = 1u,
27
29 Column = 2u,
30
31
33 Default = Row
34 };
35
36
39}
40
41
44#endif // GUARD
MatrixMajor
Matrix major enum.
Definition MatrixMajor.hpp:24
@ Column
Column major standard.
@ Default
Default standard.
@ Row
Row major standard.