]> git.localhorst.tv Git - gong.git/blob - src/geometry/const.hpp
code, assets, and other stuff stolen from blank
[gong.git] / src / geometry / const.hpp
1 #ifndef GONG_GEOMETRY_CONST_HPP_
2 #define GONG_GEOMETRY_CONST_HPP_
3
4
5 namespace gong {
6 namespace geometry {
7
8 constexpr float PI = 3.141592653589793238462643383279502884;
9 constexpr float PI_0p25 = PI * 0.25f;
10 constexpr float PI_0p5 = PI * 0.5f;
11 constexpr float PI_1p5 = PI * 1.5f;
12 constexpr float PI_2p0 = PI * 2.0f;
13
14 constexpr float PI_inv = 1.0f / PI;
15 constexpr float PI_0p5_inv = 1.0f / PI_0p5;
16
17 }
18 }
19
20 #endif