diff options
author | jjesswan <jessica_wan@brown.edu> | 2024-05-07 06:03:03 -0400 |
---|---|---|
committer | jjesswan <jessica_wan@brown.edu> | 2024-05-07 06:03:03 -0400 |
commit | 675391d07f50d0067e7bab983433c6d86f5f8256 (patch) | |
tree | 65a857125b91502974bceb40e24c1c7eff4bad59 /glm-master/glm/ext/vector_reciprocal.hpp | |
parent | 6a45579dbbf991c0e12ce59958e3b533d19fc9d4 (diff) |
remove glm
Diffstat (limited to 'glm-master/glm/ext/vector_reciprocal.hpp')
-rw-r--r-- | glm-master/glm/ext/vector_reciprocal.hpp | 135 |
1 files changed, 0 insertions, 135 deletions
diff --git a/glm-master/glm/ext/vector_reciprocal.hpp b/glm-master/glm/ext/vector_reciprocal.hpp deleted file mode 100644 index b383e3c..0000000 --- a/glm-master/glm/ext/vector_reciprocal.hpp +++ /dev/null @@ -1,135 +0,0 @@ -/// @ref ext_vector_reciprocal -/// @file glm/ext/vector_reciprocal.hpp -/// -/// @see core (dependence) -/// -/// @defgroup gtc_reciprocal GLM_EXT_vector_reciprocal -/// @ingroup ext -/// -/// Include <glm/ext/vector_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_ENABLE && !defined(GLM_EXT_INCLUDED) -# pragma message("GLM: GLM_EXT_vector_reciprocal extension included") -#endif - -namespace glm -{ - /// @addtogroup ext_vector_reciprocal - /// @{ - - /// Secant function. - /// hypotenuse / adjacent or 1 / cos(x) - /// - /// @tparam genType Floating-point scalar or vector types. - /// - /// @see ext_vector_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 ext_vector_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 ext_vector_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 ext_vector_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 ext_vector_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 ext_vector_reciprocal - template<typename genType> - GLM_FUNC_DECL genType acot(genType x); - - /// Secant hyperbolic function. - /// - /// @tparam genType Floating-point scalar or vector types. - /// - /// @see ext_vector_reciprocal - template<typename genType> - GLM_FUNC_DECL genType sech(genType angle); - - /// Cosecant hyperbolic function. - /// - /// @tparam genType Floating-point scalar or vector types. - /// - /// @see ext_vector_reciprocal - template<typename genType> - GLM_FUNC_DECL genType csch(genType angle); - - /// Cotangent hyperbolic function. - /// - /// @tparam genType Floating-point scalar or vector types. - /// - /// @see ext_vector_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 ext_vector_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 ext_vector_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 ext_vector_reciprocal - template<typename genType> - GLM_FUNC_DECL genType acoth(genType x); - - /// @} -}//namespace glm - -#include "vector_reciprocal.inl" |