func_exponential.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 #ifndef glm_core_func_exponential
37 #define glm_core_func_exponential GLM_VERSION
38 
39 namespace glm
40 {
43 
52  template <typename genType>
53  genType pow(genType const & x, genType const & y);
54 
62  template <typename genType>
63  genType exp(genType const & x);
64 
74  template <typename genType>
75  genType log(genType const & x);
76 
84  template <typename genType>
85  genType exp2(genType const & x);
86 
95  template <typename genType>
96  genType log2(genType const & x);
97 
105  template <typename genType>
106  genType sqrt(genType const & x);
107 
115  template <typename genType>
116  genType inversesqrt(genType const & x);
117 
119 }//namespace glm
120 
121 #include "func_exponential.inl"
122 
123 #endif//glm_core_func_exponential