gtc/constants.hpp
Go to the documentation of this file.
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34 
35 
36 
37 
38 
39 #ifndef GLM_GTC_constants
40 #define GLM_GTC_constants GLM_VERSION
41 
42 // Dependency:
43 #include "../glm.hpp"
44 #include "../gtc/half_float.hpp"
45 
46 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
47 # pragma message("GLM: GLM_GTC_constants extension included")
48 #endif
49 
50 namespace glm
51 {
54 
58  template <typename T>
59  GLM_CONSTEXPR T epsilon();
60 
63  template <typename T>
64  GLM_CONSTEXPR T zero();
65 
68  template <typename T>
69  GLM_CONSTEXPR T one();
70 
73  template <typename T>
74  GLM_CONSTEXPR T pi();
75 
78  template <typename T>
79  GLM_CONSTEXPR T root_pi();
80 
83  template <typename T>
84  GLM_CONSTEXPR T half_pi();
85 
88  template <typename T>
89  GLM_CONSTEXPR T quarter_pi();
90 
93  template <typename T>
94  GLM_CONSTEXPR T one_over_pi();
95 
98  template <typename T>
99  GLM_CONSTEXPR T two_over_pi();
100 
103  template <typename T>
104  GLM_CONSTEXPR T two_over_root_pi();
105 
108  template <typename T>
109  GLM_CONSTEXPR T one_over_root_two();
110 
113  template <typename T>
114  GLM_CONSTEXPR T root_half_pi();
115 
118  template <typename T>
119  GLM_CONSTEXPR T root_two_pi();
120 
123  template <typename T>
124  GLM_CONSTEXPR T root_ln_four();
125 
128  template <typename T>
129  GLM_CONSTEXPR T e();
130 
133  template <typename T>
134  GLM_CONSTEXPR T euler();
135 
138  template <typename T>
139  GLM_CONSTEXPR T root_two();
140 
143  template <typename T>
144  GLM_CONSTEXPR T root_three();
145 
148  template <typename T>
149  GLM_CONSTEXPR T root_five();
150 
153  template <typename T>
154  GLM_CONSTEXPR T ln_two();
155 
158  template <typename T>
159  GLM_CONSTEXPR T ln_ten();
160 
163  template <typename T>
164  GLM_CONSTEXPR T ln_ln_two();
165 
168  template <typename T>
169  GLM_CONSTEXPR T third();
170 
173  template <typename T>
174  GLM_CONSTEXPR T two_thirds();
175 
178  template <typename T>
179  GLM_CONSTEXPR T golden_ratio();
180 
182 } //namespace glm
183 
184 #include "constants.inl"
185 
186 #endif//GLM_GTC_constants