/// @ref gtx_float_normalize /// @file glm/gtx/float_normalize.inl #include namespace glm { template class vecType> GLM_FUNC_QUALIFIER vecType floatNormalize(vecType const & v) { return vecType(v) / static_cast(std::numeric_limits::max()); } }//namespace glm