mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 14:43:34 +00:00
19 lines
242 B
C++
19 lines
242 B
C++
#ifndef __MLX_MATHS_ENUMS__
|
|
#define __MLX_MATHS_ENUMS__
|
|
|
|
namespace mlx
|
|
{
|
|
enum class AngleUnit
|
|
{
|
|
Degree = 0,
|
|
Radian,
|
|
Turn,
|
|
|
|
EndEnum
|
|
};
|
|
|
|
constexpr std::size_t AngleUnitCount = static_cast<std::size_t>(AngleUnit::EndEnum);
|
|
}
|
|
|
|
#endif
|