diff --git a/glm/gtx/norm.hpp b/glm/gtx/norm.hpp index d765ffef..2bcc0072 100644 --- a/glm/gtx/norm.hpp +++ b/glm/gtx/norm.hpp @@ -26,31 +26,18 @@ namespace glm /// @addtogroup gtx_norm /// @{ - //! Returns the squared length of x. - //! From GLM_GTX_norm extension. - template + /// Returns the squared length of x. + /// From GLM_GTX_norm extension. + template class vecType> GLM_FUNC_DECL T length2( - T const & x); + vecType const & x); - //! Returns the squared length of x. - //! From GLM_GTX_norm extension. - template - GLM_FUNC_DECL typename genType::value_type length2( - genType const & x); - - //! Returns the squared distance between p0 and p1, i.e., length2(p0 - p1). - //! From GLM_GTX_norm extension. - template + /// Returns the squared distance between p0 and p1, i.e., length2(p0 - p1). + /// From GLM_GTX_norm extension. + template class vecType> GLM_FUNC_DECL T distance2( - T const & p0, - T const & p1); - - //! Returns the squared distance between p0 and p1, i.e., length2(p0 - p1). - //! From GLM_GTX_norm extension. - template - GLM_FUNC_DECL typename genType::value_type distance2( - genType const & p0, - genType const & p1); + vecType const & p0, + vecType const & p1); //! Returns the L1 norm between x and y. //! From GLM_GTX_norm extension. diff --git a/glm/gtx/norm.inl b/glm/gtx/norm.inl index 2d6b7dc6..f8c351bf 100644 --- a/glm/gtx/norm.inl +++ b/glm/gtx/norm.inl @@ -1,81 +1,44 @@ /// @ref gtx_norm /// @file glm/gtx/norm.inl -namespace glm +namespace glm{ +namespace detail { - template - GLM_FUNC_QUALIFIER T length2 - ( - T const & x - ) + template