typhoon/tempest/math/CMath.cpp
2026-04-24 00:30:51 +04:00

7 lines
261 B
C++

#include "tempest/math/CMath.hpp"
const float CMath::PI = 3.1415927f;
const float CMath::TWO_PI = 6.2831855f;
const float CMath::OO_TWO_PI = 1.0f / CMath::TWO_PI;
const float CMath::EPSILON = 0.00000023841858f;
const float CMath::DEG2RAD = CMath::PI / 180.0f;