scalar_relational.hpp 889 B

123456789101112131415161718192021222324252627282930313233343536
  1. /// @ref gtx_scalar_relational
  2. /// @file glm/gtx/scalar_relational.hpp
  3. ///
  4. /// @see core (dependence)
  5. ///
  6. /// @defgroup gtx_scalar_relational GLM_GTX_scalar_relational
  7. /// @ingroup gtx
  8. ///
  9. /// Include <glm/gtx/scalar_relational.hpp> to use the features of this extension.
  10. ///
  11. /// Extend a position from a source to a position at a defined length.
  12. #pragma once
  13. // Dependency:
  14. #include "../glm.hpp"
  15. #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  16. # ifndef GLM_ENABLE_EXPERIMENTAL
  17. # pragma message("GLM: GLM_GTX_extend is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it.")
  18. # else
  19. # pragma message("GLM: GLM_GTX_extend extension included")
  20. # endif
  21. #endif
  22. namespace glm
  23. {
  24. /// @addtogroup gtx_scalar_relational
  25. /// @{
  26. /// @}
  27. }//namespace glm
  28. #include "scalar_relational.inl"