diff --git a/glm/gtc/reciprocal.hpp b/glm/gtc/reciprocal.hpp index 8d890796..641bec14 100644 --- a/glm/gtc/reciprocal.hpp +++ b/glm/gtc/reciprocal.hpp @@ -47,69 +47,81 @@ namespace glm { - /// @addtogroup gtx_reciprocal + /// @addtogroup gtc_reciprocal /// @{ - //! Secant function. - //! hypotenuse / adjacent or 1 / cos(x) - //! From GLM_GTX_reciprocal extension. + /// Secant function. + /// hypotenuse / adjacent or 1 / cos(x) + /// + /// @see gtc_reciprocal template genType sec(genType const & angle); - //! Cosecant function. - //! hypotenuse / opposite or 1 / sin(x) - //! From GLM_GTX_reciprocal extension. + /// Cosecant function. + /// hypotenuse / opposite or 1 / sin(x) + /// + /// @see gtc_reciprocal template genType csc(genType const & angle); - //! Cotangent function. - //! adjacent / opposite or 1 / tan(x) - //! From GLM_GTX_reciprocal extension. + /// Cotangent function. + /// adjacent / opposite or 1 / tan(x) + /// + /// @see gtc_reciprocal template genType cot(genType const & angle); - //! Inverse secant function. - //! From GLM_GTX_reciprocal extension. + /// Inverse secant function. + /// + /// @see gtc_reciprocal template genType asec(genType const & x); - //! Inverse cosecant function. - //! From GLM_GTX_reciprocal extension. + /// Inverse cosecant function. + /// + /// @see gtc_reciprocal template genType acsc(genType const & x); - //! Inverse cotangent function. - //! From GLM_GTX_reciprocal extension. + /// Inverse cotangent function. + /// + /// @see gtc_reciprocal template genType acot(genType const & x); - //! Secant hyperbolic function. - //! From GLM_GTX_reciprocal extension. + /// Secant hyperbolic function. + /// + /// @see gtc_reciprocal template genType sech(genType const & angle); - //! Cosecant hyperbolic function. - //! From GLM_GTX_reciprocal extension. + /// Cosecant hyperbolic function. + /// + /// @see gtc_reciprocal template genType csch(genType const & angle); - //! Cotangent hyperbolic function. - //! From GLM_GTX_reciprocal extension. + /// Cotangent hyperbolic function. + /// + /// @see gtc_reciprocal template genType coth(genType const & angle); - //! Inverse secant hyperbolic function. - //! From GLM_GTX_reciprocal extension. + /// Inverse secant hyperbolic function. + /// + /// @see gtc_reciprocal template genType asech(genType const & x); - //! Inverse cosecant hyperbolic function. - //! From GLM_GTX_reciprocal extension. + /// Inverse cosecant hyperbolic function. + /// + /// @see gtc_reciprocal template genType acsch(genType const & x); - //! Inverse cotangent hyperbolic function. - //! From GLM_GTX_reciprocal extension. + /// Inverse cotangent hyperbolic function. + /// + /// @see gtc_reciprocal template genType acoth(genType const & x);