summaryrefslogtreecommitdiffstats
path: root/external/include/glm/gtc/reciprocal.hpp
diff options
context:
space:
mode:
authorLaG1924 <12997935+LaG1924@users.noreply.github.com>2018-08-21 17:40:38 +0200
committerLaG1924 <12997935+LaG1924@users.noreply.github.com>2018-08-21 17:40:38 +0200
commit2877f4eda3d1b0c7431039e3142ecf1a282a34b1 (patch)
tree58ad35e27ab2a3b8955f5adbf28f296670681ffc /external/include/glm/gtc/reciprocal.hpp
parentSmooth sun movement (diff)
downloadAltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.tar
AltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.tar.gz
AltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.tar.bz2
AltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.tar.lz
AltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.tar.xz
AltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.tar.zst
AltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.zip
Diffstat (limited to 'external/include/glm/gtc/reciprocal.hpp')
-rw-r--r--external/include/glm/gtc/reciprocal.hpp84
1 files changed, 42 insertions, 42 deletions
diff --git a/external/include/glm/gtc/reciprocal.hpp b/external/include/glm/gtc/reciprocal.hpp
index c14a4fe..1a2e516 100644
--- a/external/include/glm/gtc/reciprocal.hpp
+++ b/external/include/glm/gtc/reciprocal.hpp
@@ -6,9 +6,9 @@
/// @defgroup gtc_reciprocal GLM_GTC_reciprocal
/// @ingroup gtc
///
-/// @brief Define secant, cosecant and cotangent functions.
+/// Include <glm/gtc/reciprocal.hpp> to use the features of this extension.
///
-/// <glm/gtc/reciprocal.hpp> need to be included to use these features.
+/// Define secant, cosecant and cotangent functions.
#pragma once
@@ -26,107 +26,107 @@ namespace glm
/// Secant function.
/// hypotenuse / adjacent or 1 / cos(x)
- ///
+ ///
/// @tparam genType Floating-point scalar or vector types.
- ///
+ ///
/// @see gtc_reciprocal
- template <typename genType>
+ template<typename genType>
GLM_FUNC_DECL genType sec(genType angle);
/// Cosecant function.
/// hypotenuse / opposite or 1 / sin(x)
- ///
+ ///
/// @tparam genType Floating-point scalar or vector types.
- ///
+ ///
/// @see gtc_reciprocal
- template <typename genType>
+ template<typename genType>
GLM_FUNC_DECL genType csc(genType angle);
-
+
/// Cotangent function.
/// adjacent / opposite or 1 / tan(x)
- ///
+ ///
/// @tparam genType Floating-point scalar or vector types.
- ///
+ ///
/// @see gtc_reciprocal
- template <typename genType>
+ template<typename genType>
GLM_FUNC_DECL genType cot(genType angle);
/// Inverse secant function.
- ///
+ ///
/// @return Return an angle expressed in radians.
/// @tparam genType Floating-point scalar or vector types.
- ///
+ ///
/// @see gtc_reciprocal
- template <typename genType>
+ template<typename genType>
GLM_FUNC_DECL genType asec(genType x);
/// Inverse cosecant function.
- ///
+ ///
/// @return Return an angle expressed in radians.
/// @tparam genType Floating-point scalar or vector types.
- ///
+ ///
/// @see gtc_reciprocal
- template <typename genType>
+ template<typename genType>
GLM_FUNC_DECL genType acsc(genType x);
-
+
/// Inverse cotangent function.
- ///
+ ///
/// @return Return an angle expressed in radians.
/// @tparam genType Floating-point scalar or vector types.
- ///
+ ///
/// @see gtc_reciprocal
- template <typename genType>
+ template<typename genType>
GLM_FUNC_DECL genType acot(genType x);
/// Secant hyperbolic function.
- ///
+ ///
/// @tparam genType Floating-point scalar or vector types.
- ///
+ ///
/// @see gtc_reciprocal
- template <typename genType>
+ template<typename genType>
GLM_FUNC_DECL genType sech(genType angle);
/// Cosecant hyperbolic function.
- ///
+ ///
/// @tparam genType Floating-point scalar or vector types.
- ///
+ ///
/// @see gtc_reciprocal
- template <typename genType>
+ template<typename genType>
GLM_FUNC_DECL genType csch(genType angle);
-
+
/// Cotangent hyperbolic function.
- ///
+ ///
/// @tparam genType Floating-point scalar or vector types.
- ///
+ ///
/// @see gtc_reciprocal
- template <typename genType>
+ template<typename genType>
GLM_FUNC_DECL genType coth(genType angle);
/// Inverse secant hyperbolic function.
- ///
+ ///
/// @return Return an angle expressed in radians.
/// @tparam genType Floating-point scalar or vector types.
- ///
+ ///
/// @see gtc_reciprocal
- template <typename genType>
+ template<typename genType>
GLM_FUNC_DECL genType asech(genType x);
/// Inverse cosecant hyperbolic function.
- ///
+ ///
/// @return Return an angle expressed in radians.
/// @tparam genType Floating-point scalar or vector types.
- ///
+ ///
/// @see gtc_reciprocal
- template <typename genType>
+ template<typename genType>
GLM_FUNC_DECL genType acsch(genType x);
-
+
/// Inverse cotangent hyperbolic function.
- ///
+ ///
/// @return Return an angle expressed in radians.
/// @tparam genType Floating-point scalar or vector types.
- ///
+ ///
/// @see gtc_reciprocal
- template <typename genType>
+ template<typename genType>
GLM_FUNC_DECL genType acoth(genType x);
/// @}