added libs

This commit is contained in:
2026-04-16 01:44:05 +02:00
parent 3fb766de7c
commit 71753ea29b
434 changed files with 68141 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/// @ref gtx_float_normalize
#include <limits>
namespace glm
{
template<length_t L, typename T, qualifier Q>
GLM_FUNC_QUALIFIER vec<L, float, Q> floatNormalize(vec<L, T, Q> const& v)
{
return vec<L, float, Q>(v) / static_cast<float>(std::numeric_limits<T>::max());
}
}//namespace glm