]> git.localhorst.tv Git - blobs.git/blob - src/graphics/const.hpp
a65dc10752dd6b5d8a4fcd663ff131e5f7131fdb
[blobs.git] / src / graphics / const.hpp
1 #ifndef BLOBS_GRAPHICS_CONST_HPP_
2 #define BLOBS_GRAPHICS_CONST_HPP_
3
4
5 namespace blobs {
6 namespace graphics {
7
8 constexpr double PI = 3.141592653589793238462643383279502884;
9 constexpr double PI_0p25 = PI * 0.25;
10 constexpr double PI_0p5 = PI * 0.5;
11 constexpr double PI_1p5 = PI * 1.5;
12 constexpr double PI_2p0 = PI * 2.0;
13
14 constexpr double PI_inv = 1.0 / PI;
15 constexpr double PI_0p5_inv = 1.0 / PI_0p5;
16
17 }
18 }
19
20 #endif