mirage/src/misc/angle.h
2025-03-16 00:39:40 +08:00

10 lines
254 B
C

#pragma once
consteval float operator"" _deg(const long double in_degree) {
return static_cast<float>(in_degree * 3.1415926f / 180.0f);
}
consteval float operator"" _deg(const unsigned long long in_degree) {
return in_degree * 3.1415926f / 180.0f;
}