mirror of
https://github.com/Kbz-8/42_vox.git
synced 2026-01-10 22:23:35 +00:00
21 lines
267 B
C++
21 lines
267 B
C++
#ifndef __SCOPE_MATHS_ENUMS__
|
|
#define __SCOPE_MATHS_ENUMS__
|
|
|
|
#include <cstddef>
|
|
|
|
namespace Scop
|
|
{
|
|
enum class AngleUnit
|
|
{
|
|
Degree = 0,
|
|
Radian,
|
|
Turn,
|
|
|
|
EndEnum
|
|
};
|
|
|
|
constexpr std::size_t AngleUnitCount = static_cast<std::size_t>(AngleUnit::EndEnum);
|
|
}
|
|
|
|
#endif
|