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