summaryrefslogtreecommitdiffstats
path: root/external/include/glm/gtc/reciprocal.hpp
diff options
context:
space:
mode:
authorLaG1924 <12997935+LaG1924@users.noreply.github.com>2021-06-22 02:38:30 +0200
committerGitHub <noreply@github.com>2021-06-22 02:38:30 +0200
commitca7bcf9f7dc5eb47ccbec1049b323f0604dabadd (patch)
tree33d7d2673ba0da8a92323b07d061f655c719ae40 /external/include/glm/gtc/reciprocal.hpp
parentMerge pull request #44 from LaG1924/fix/protocol_support (diff)
parentUpdated build instructions and added MacOS #49 (diff)
downloadAltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.gz
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.bz2
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.lz
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.xz
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.zst
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.zip
Diffstat (limited to 'external/include/glm/gtc/reciprocal.hpp')
-rw-r--r--external/include/glm/gtc/reciprocal.hpp135
1 files changed, 0 insertions, 135 deletions
diff --git a/external/include/glm/gtc/reciprocal.hpp b/external/include/glm/gtc/reciprocal.hpp
deleted file mode 100644
index 1a2e516..0000000
--- a/external/include/glm/gtc/reciprocal.hpp
+++ /dev/null
@@ -1,135 +0,0 @@
-/// @ref gtc_reciprocal
-/// @file glm/gtc/reciprocal.hpp
-///
-/// @see core (dependence)
-///
-/// @defgroup gtc_reciprocal GLM_GTC_reciprocal
-/// @ingroup gtc
-///
-/// Include <glm/gtc/reciprocal.hpp> to use the features of this extension.
-///
-/// Define secant, cosecant and cotangent functions.
-
-#pragma once
-
-// Dependencies
-#include "../detail/setup.hpp"
-
-#if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED)
-# pragma message("GLM: GLM_GTC_reciprocal extension included")
-#endif
-
-namespace glm
-{
- /// @addtogroup gtc_reciprocal
- /// @{
-
- /// Secant function.
- /// hypotenuse / adjacent or 1 / cos(x)
- ///
- /// @tparam genType Floating-point scalar or vector types.
- ///
- /// @see gtc_reciprocal
- 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>
- 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>
- 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>
- 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>
- 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>
- GLM_FUNC_DECL genType acot(genType x);
-
- /// Secant hyperbolic function.
- ///
- /// @tparam genType Floating-point scalar or vector types.
- ///
- /// @see gtc_reciprocal
- 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>
- GLM_FUNC_DECL genType csch(genType angle);
-
- /// Cotangent hyperbolic function.
- ///
- /// @tparam genType Floating-point scalar or vector types.
- ///
- /// @see gtc_reciprocal
- 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>
- 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>
- 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>
- GLM_FUNC_DECL genType acoth(genType x);
-
- /// @}
-}//namespace glm
-
-#include "reciprocal.inl"