Merge pull request #452 from svenstaro/master

Fix docs #452
This commit is contained in:
Christophe R 2015-11-22 11:40:47 +01:00
commit d35e3950b7

View File

@ -58,15 +58,15 @@ namespace glm
/// @addtogroup gtx_vector_angle
/// @{
//! Returns the absolute angle between two vectors
//! Returns the absolute angle between two vectors.
//! Parameters need to be normalized.
/// @see gtx_vector_angle extension
/// @see gtx_vector_angle extension.
template <typename vecType>
GLM_FUNC_DECL typename vecType::value_type angle(
vecType const & x,
vecType const & y);
//! Returns the oriented angle between two 2d vectors
//! Returns the oriented angle between two 2d vectors.
//! Parameters need to be normalized.
/// @see gtx_vector_angle extension.
template <typename T, precision P>