gtc/reciprocal.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 #ifndef GLM_GTC_reciprocal
39 #define GLM_GTC_reciprocal GLM_VERSION
40 
41 // Dependency:
42 #include "../glm.hpp"
43 
44 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
45 # pragma message("GLM: GLM_GTC_reciprocal extension included")
46 #endif
47 
48 namespace glm
49 {
52 
57  template <typename genType>
58  genType sec(genType const & angle);
59 
64  template <typename genType>
65  genType csc(genType const & angle);
66 
71  template <typename genType>
72  genType cot(genType const & angle);
73 
77  template <typename genType>
78  genType asec(genType const & x);
79 
83  template <typename genType>
84  genType acsc(genType const & x);
85 
89  template <typename genType>
90  genType acot(genType const & x);
91 
95  template <typename genType>
96  genType sech(genType const & angle);
97 
101  template <typename genType>
102  genType csch(genType const & angle);
103 
107  template <typename genType>
108  genType coth(genType const & angle);
109 
113  template <typename genType>
114  genType asech(genType const & x);
115 
119  template <typename genType>
120  genType acsch(genType const & x);
121 
125  template <typename genType>
126  genType acoth(genType const & x);
127 
129 }//namespace glm
130 
131 #include "reciprocal.inl"
132 
133 #endif//GLM_GTC_reciprocal