SA_Maths
Sapphire Suite's C++ Maths Library
Loading...
Searching...
No Matches
Include
SA
Maths
Matrix
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
20
namespace
SA
21
{
23
enum class
MatrixMajor
: uint8_t
24
{
26
Row
= 1u,
27
29
Column
= 2u,
30
31
33
Default
=
Row
34
};
35
36
38
using
MatMaj
=
MatrixMajor
;
39
}
40
41
44
#endif
// GUARD
SA::MatrixMajor
MatrixMajor
Matrix major enum.
Definition
MatrixMajor.hpp:24
SA::MatrixMajor::Column
@ Column
Column major standard.
SA::MatrixMajor::Default
@ Default
Default standard.
SA::MatrixMajor::Row
@ Row
Row major standard.
Generated by
1.10.0