|
|
@@ -53,80 +53,80 @@ namespace glm
|
|
|
/// @addtogroup gtc_reciprocal
|
|
|
/// @{
|
|
|
|
|
|
- /// Secant function.
|
|
|
+ /// Secant function.
|
|
|
/// hypotenuse / adjacent or 1 / cos(x)
|
|
|
///
|
|
|
/// @see gtc_reciprocal
|
|
|
- template <typename genType>
|
|
|
- GLM_FUNC_DECL genType sec(genType const & angle);
|
|
|
+ template <typename genType>
|
|
|
+ GLM_FUNC_DECL genType sec(genType angle);
|
|
|
|
|
|
- /// Cosecant function.
|
|
|
+ /// Cosecant function.
|
|
|
/// hypotenuse / opposite or 1 / sin(x)
|
|
|
///
|
|
|
/// @see gtc_reciprocal
|
|
|
template <typename genType>
|
|
|
- GLM_FUNC_DECL genType csc(genType const & angle);
|
|
|
+ GLM_FUNC_DECL genType csc(genType angle);
|
|
|
|
|
|
- /// Cotangent function.
|
|
|
+ /// Cotangent function.
|
|
|
/// adjacent / opposite or 1 / tan(x)
|
|
|
///
|
|
|
/// @see gtc_reciprocal
|
|
|
- template <typename genType>
|
|
|
- GLM_FUNC_DECL genType cot(genType const & angle);
|
|
|
+ template <typename genType>
|
|
|
+ GLM_FUNC_DECL genType cot(genType angle);
|
|
|
|
|
|
- /// Inverse secant function.
|
|
|
+ /// Inverse secant function.
|
|
|
///
|
|
|
/// @see gtc_reciprocal
|
|
|
- template <typename genType>
|
|
|
- GLM_FUNC_DECL genType asec(genType const & x);
|
|
|
+ template <typename genType>
|
|
|
+ GLM_FUNC_DECL genType asec(genType x);
|
|
|
|
|
|
- /// Inverse cosecant function.
|
|
|
+ /// Inverse cosecant function.
|
|
|
///
|
|
|
/// @see gtc_reciprocal
|
|
|
- template <typename genType>
|
|
|
- GLM_FUNC_DECL genType acsc(genType const & x);
|
|
|
+ template <typename genType>
|
|
|
+ GLM_FUNC_DECL genType acsc(genType x);
|
|
|
|
|
|
- /// Inverse cotangent function.
|
|
|
+ /// Inverse cotangent function.
|
|
|
///
|
|
|
/// @see gtc_reciprocal
|
|
|
- template <typename genType>
|
|
|
- GLM_FUNC_DECL genType acot(genType const & x);
|
|
|
+ template <typename genType>
|
|
|
+ GLM_FUNC_DECL genType acot(genType x);
|
|
|
|
|
|
- /// Secant hyperbolic function.
|
|
|
+ /// Secant hyperbolic function.
|
|
|
///
|
|
|
/// @see gtc_reciprocal
|
|
|
- template <typename genType>
|
|
|
- GLM_FUNC_DECL genType sech(genType const & angle);
|
|
|
+ template <typename genType>
|
|
|
+ GLM_FUNC_DECL genType sech(genType angle);
|
|
|
|
|
|
- /// Cosecant hyperbolic function.
|
|
|
+ /// Cosecant hyperbolic function.
|
|
|
///
|
|
|
/// @see gtc_reciprocal
|
|
|
- template <typename genType>
|
|
|
- GLM_FUNC_DECL genType csch(genType const & angle);
|
|
|
+ template <typename genType>
|
|
|
+ GLM_FUNC_DECL genType csch(genType angle);
|
|
|
|
|
|
- /// Cotangent hyperbolic function.
|
|
|
+ /// Cotangent hyperbolic function.
|
|
|
///
|
|
|
/// @see gtc_reciprocal
|
|
|
- template <typename genType>
|
|
|
- GLM_FUNC_DECL genType coth(genType const & angle);
|
|
|
+ template <typename genType>
|
|
|
+ GLM_FUNC_DECL genType coth(genType angle);
|
|
|
|
|
|
- /// Inverse secant hyperbolic function.
|
|
|
+ /// Inverse secant hyperbolic function.
|
|
|
///
|
|
|
/// @see gtc_reciprocal
|
|
|
- template <typename genType>
|
|
|
- GLM_FUNC_DECL genType asech(genType const & x);
|
|
|
+ template <typename genType>
|
|
|
+ GLM_FUNC_DECL genType asech(genType x);
|
|
|
|
|
|
- /// Inverse cosecant hyperbolic function.
|
|
|
+ /// Inverse cosecant hyperbolic function.
|
|
|
///
|
|
|
/// @see gtc_reciprocal
|
|
|
- template <typename genType>
|
|
|
- GLM_FUNC_DECL genType acsch(genType const & x);
|
|
|
+ template <typename genType>
|
|
|
+ GLM_FUNC_DECL genType acsch(genType x);
|
|
|
|
|
|
- /// Inverse cotangent hyperbolic function.
|
|
|
+ /// Inverse cotangent hyperbolic function.
|
|
|
///
|
|
|
/// @see gtc_reciprocal
|
|
|
- template <typename genType>
|
|
|
- GLM_FUNC_DECL genType acoth(genType const & x);
|
|
|
+ template <typename genType>
|
|
|
+ GLM_FUNC_DECL genType acoth(genType x);
|
|
|
|
|
|
/// @}
|
|
|
}//namespace glm
|