From 2877f4eda3d1b0c7431039e3142ecf1a282a34b1 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Tue, 21 Aug 2018 20:40:38 +0500 Subject: Update glm to 0.9.9.0 --- external/include/glm/gtx/norm.hpp | 66 +++++++++++++++++---------------------- 1 file changed, 28 insertions(+), 38 deletions(-) (limited to 'external/include/glm/gtx/norm.hpp') diff --git a/external/include/glm/gtx/norm.hpp b/external/include/glm/gtx/norm.hpp index b3cb528..2f106d8 100644 --- a/external/include/glm/gtx/norm.hpp +++ b/external/include/glm/gtx/norm.hpp @@ -7,16 +7,20 @@ /// @defgroup gtx_norm GLM_GTX_norm /// @ingroup gtx /// -/// @brief Various ways to compute vector norms. -/// -/// need to be included to use these functionalities. +/// Include to use the features of this extension. +/// +/// Various ways to compute vector norms. #pragma once // Dependency: -#include "../detail/func_geometric.hpp" +#include "../geometric.hpp" #include "../gtx/quaternion.hpp" +#ifndef GLM_ENABLE_EXPERIMENTAL +# error "GLM: GLM_GTX_norm is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it." +#endif + #if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED) # pragma message("GLM: GLM_GTX_norm extension included") #endif @@ -28,57 +32,43 @@ namespace glm /// Returns the squared length of x. /// From GLM_GTX_norm extension. - template class vecType> - GLM_FUNC_DECL T length2( - vecType const & x); + template + GLM_FUNC_DECL T length2(vec const& x); /// 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( - vecType const & p0, - vecType const & p1); + template + GLM_FUNC_DECL T distance2(vec const& p0, vec const& p1); //! Returns the L1 norm between x and y. //! From GLM_GTX_norm extension. - template - GLM_FUNC_DECL T l1Norm( - tvec3 const & x, - tvec3 const & y); - + template + GLM_FUNC_DECL T l1Norm(vec<3, T, Q> const& x, vec<3, T, Q> const& y); + //! Returns the L1 norm of v. //! From GLM_GTX_norm extension. - template - GLM_FUNC_DECL T l1Norm( - tvec3 const & v); - + template + GLM_FUNC_DECL T l1Norm(vec<3, T, Q> const& v); + //! Returns the L2 norm between x and y. //! From GLM_GTX_norm extension. - template - GLM_FUNC_DECL T l2Norm( - tvec3 const & x, - tvec3 const & y); - + template + GLM_FUNC_DECL T l2Norm(vec<3, T, Q> const& x, vec<3, T, Q> const& y); + //! Returns the L2 norm of v. //! From GLM_GTX_norm extension. - template - GLM_FUNC_DECL T l2Norm( - tvec3 const & x); - + template + GLM_FUNC_DECL T l2Norm(vec<3, T, Q> const& x); + //! Returns the L norm between x and y. //! From GLM_GTX_norm extension. - template - GLM_FUNC_DECL T lxNorm( - tvec3 const & x, - tvec3 const & y, - unsigned int Depth); + template + GLM_FUNC_DECL T lxNorm(vec<3, T, Q> const& x, vec<3, T, Q> const& y, unsigned int Depth); //! Returns the L norm of v. //! From GLM_GTX_norm extension. - template - GLM_FUNC_DECL T lxNorm( - tvec3 const & x, - unsigned int Depth); + template + GLM_FUNC_DECL T lxNorm(vec<3, T, Q> const& x, unsigned int Depth); /// @} }//namespace glm -- cgit v1.2.3