Collection of DPF-based plugins for packaging
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
331B

  1. /// @ref gtx_float_normalize
  2. /// @file glm/gtx/float_normalize.inl
  3. #include <limits>
  4. namespace glm
  5. {
  6. template<length_t L, typename T, qualifier Q>
  7. GLM_FUNC_QUALIFIER vec<L, float, Q> floatNormalize(vec<L, T, Q> const& v)
  8. {
  9. return vec<L, float, Q>(v) / static_cast<float>(std::numeric_limits<T>::max());
  10. }
  11. }//namespace glm