17 #include "../detail/func_geometric.hpp" 
   18 #include "../gtx/quaternion.hpp" 
   20 #ifndef GLM_ENABLE_EXPERIMENTAL 
   21 #       error "GLM: GLM_GTX_norm is an experimetal extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it." 
   24 #if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED) 
   25 #       pragma message("GLM: GLM_GTX_norm extension included") 
   35         template <
typename T, precision P, 
template <
typename, precision> 
class vecType>
 
   37                 vecType<T, P> 
const & x);
 
   41         template <
typename T, precision P, 
template <
typename, precision> 
class vecType>
 
   43                 vecType<T, P> 
const & p0,
 
   44                 vecType<T, P> 
const & p1);
 
   48         template <
typename T, precision P>
 
   50                 tvec3<T, P> 
const & x,
 
   51                 tvec3<T, P> 
const & y);
 
   55         template <
typename T, precision P>
 
   57                 tvec3<T, P> 
const & v);
 
   61         template <
typename T, precision P>
 
   63                 tvec3<T, P> 
const & x,
 
   64                 tvec3<T, P> 
const & y);
 
   68         template <
typename T, precision P>
 
   70                 tvec3<T, P> 
const & x);
 
   74         template <
typename T, precision P>
 
   76                 tvec3<T, P> 
const & x,
 
   77                 tvec3<T, P> 
const & y,
 
   82         template <
typename T, precision P>
 
   84                 tvec3<T, P> 
const & x,
 
GLM_FUNC_DECL T l2Norm(tvec3< T, P > const &x)
Returns the L2 norm of v. 
GLM_FUNC_DECL T distance2(vecType< T, P > const &p0, vecType< T, P > const &p1)
Returns the squared distance between p0 and p1, i.e., length2(p0 - p1). 
GLM_FUNC_DECL T l1Norm(tvec3< T, P > const &v)
Returns the L1 norm of v. 
GLM_FUNC_DECL T lxNorm(tvec3< T, P > const &x, unsigned int Depth)
Returns the L norm of v. 
GLM_FUNC_DECL T length2(vecType< T, P > const &x)
Returns the squared length of x.