~mir-team/mir/in-process-egl+input-conglomeration

« back to all changes in this revision

Viewing changes to 3rd_party/glm/glm/gtx/reciprocal.hpp

Merged trunk and fixed issues

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
///////////////////////////////////////////////////////////////////////////////////
2
 
/// OpenGL Mathematics (glm.g-truc.net)
3
 
///
4
 
/// Copyright (c) 2005 - 2012 G-Truc Creation (www.g-truc.net)
5
 
/// Permission is hereby granted, free of charge, to any person obtaining a copy
6
 
/// of this software and associated documentation files (the "Software"), to deal
7
 
/// in the Software without restriction, including without limitation the rights
8
 
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
 
/// copies of the Software, and to permit persons to whom the Software is
10
 
/// furnished to do so, subject to the following conditions:
11
 
/// 
12
 
/// The above copyright notice and this permission notice shall be included in
13
 
/// all copies or substantial portions of the Software.
14
 
/// 
15
 
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
 
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
 
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
 
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
 
/// THE SOFTWARE.
22
 
///
23
 
/// @ref gtx_reciprocal
24
 
/// @file glm/gtx/reciprocal.hpp
25
 
/// @date 2008-10-09 / 2011-06-07
26
 
/// @author Christophe Riccio
27
 
///
28
 
/// @see core (dependence)
29
 
///
30
 
/// @defgroup gtx_reciprocal GLM_GTX_reciprocal: Reciprocal
31
 
/// @ingroup gtx
32
 
/// 
33
 
/// @brief Define secant, cosecant and cotangent functions.
34
 
/// 
35
 
/// <glm/gtx/reciprocal.hpp> need to be included to use these functionalities.
36
 
///////////////////////////////////////////////////////////////////////////////////
37
 
 
38
 
#ifndef GLM_GTX_reciprocal
39
 
#define GLM_GTX_reciprocal GLM_VERSION
40
 
 
41
 
// Dependency:
42
 
#include "../glm.hpp"
43
 
 
44
 
#if(defined(GLM_MESSAGES) && !defined(glm_ext))
45
 
#       pragma message("GLM: GLM_GTX_reciprocal extension included")
46
 
#endif
47
 
 
48
 
namespace glm
49
 
{
50
 
        /// @addtogroup gtx_reciprocal
51
 
        /// @{
52
 
 
53
 
        //! Secant function. 
54
 
        //! hypotenuse / adjacent or 1 / cos(x)
55
 
        //! From GLM_GTX_reciprocal extension.
56
 
        template <typename genType> 
57
 
        genType sec(genType const & angle);
58
 
 
59
 
        //! Cosecant function. 
60
 
        //! hypotenuse / opposite or 1 / sin(x)
61
 
        //! From GLM_GTX_reciprocal extension.
62
 
        template <typename genType> 
63
 
        genType csc(genType const & angle);
64
 
                
65
 
        //! Cotangent function. 
66
 
        //! adjacent / opposite or 1 / tan(x)
67
 
        //! From GLM_GTX_reciprocal extension.
68
 
        template <typename genType> 
69
 
        genType cot(genType const & angle);
70
 
 
71
 
        //! Inverse secant function. 
72
 
        //! From GLM_GTX_reciprocal extension.
73
 
        template <typename genType> 
74
 
        genType asec(genType const & x);
75
 
 
76
 
        //! Inverse cosecant function. 
77
 
        //! From GLM_GTX_reciprocal extension.
78
 
        template <typename genType> 
79
 
        genType acsc(genType const & x);
80
 
                
81
 
        //! Inverse cotangent function. 
82
 
        //! From GLM_GTX_reciprocal extension.
83
 
        template <typename genType> 
84
 
        genType acot(genType const & x);
85
 
 
86
 
        //! Secant hyperbolic function. 
87
 
        //! From GLM_GTX_reciprocal extension.
88
 
        template <typename genType> 
89
 
        genType sech(genType const & angle);
90
 
 
91
 
        //! Cosecant hyperbolic function. 
92
 
        //! From GLM_GTX_reciprocal extension.
93
 
        template <typename genType> 
94
 
        genType csch(genType const & angle);
95
 
                
96
 
        //! Cotangent hyperbolic function. 
97
 
        //! From GLM_GTX_reciprocal extension.
98
 
        template <typename genType> 
99
 
        genType coth(genType const & angle);
100
 
 
101
 
        //! Inverse secant hyperbolic function. 
102
 
        //! From GLM_GTX_reciprocal extension.
103
 
        template <typename genType> 
104
 
        genType asech(genType const & x);
105
 
 
106
 
        //! Inverse cosecant hyperbolic function. 
107
 
        //! From GLM_GTX_reciprocal extension.
108
 
        template <typename genType> 
109
 
        genType acsch(genType const & x);
110
 
                
111
 
        //! Inverse cotangent hyperbolic function. 
112
 
        //! From GLM_GTX_reciprocal extension.
113
 
        template <typename genType> 
114
 
        genType acoth(genType const & x);
115
 
 
116
 
        /// @}
117
 
}//namespace glm
118
 
 
119
 
#include "reciprocal.inl"
120
 
 
121
 
#endif//GLM_GTX_reciprocal