This commit is contained in:
Sven-Hendrik Haase 2015-11-22 06:48:23 +01:00
parent 254ea0ee24
commit 16aba1a937

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>