|
|
|
@ -10,15 +10,14 @@ |
|
|
|
|
#ifndef glm_core_func_trigonometric |
|
|
|
|
#define glm_core_func_trigonometric |
|
|
|
|
|
|
|
|
|
namespace glm |
|
|
|
|
{ |
|
|
|
|
namespace glm{ |
|
|
|
|
namespace core{ |
|
|
|
|
namespace function{ |
|
|
|
|
//! Define Angle and trigonometry functions
|
|
|
|
|
//! from Section 8.1 of GLSL 1.30.8 specification.
|
|
|
|
|
//! Included in glm namespace.
|
|
|
|
|
namespace trigonometric{ |
|
|
|
|
|
|
|
|
|
namespace trigonometric |
|
|
|
|
{ |
|
|
|
|
/// \addtogroup core_funcs
|
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
@ -141,11 +140,9 @@ namespace glm |
|
|
|
|
genType atanh(genType const & x); |
|
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
|
|
|
|
|
}//namespace trigonometric
|
|
|
|
|
}//namespace function
|
|
|
|
|
}//namespace core
|
|
|
|
|
|
|
|
|
|
using namespace core::function::trigonometric; |
|
|
|
|
}//namespace glm
|
|
|
|
|
|
|
|
|
|