scalar_relational.hpp 905 B

12345678910111213141516171819202122232425262728293031323334353637
  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. #ifndef GLM_ENABLE_EXPERIMENTAL
  16. # error "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."
  17. #endif
  18. #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  19. # pragma message("GLM: GLM_GTX_extend extension included")
  20. #endif
  21. namespace glm
  22. {
  23. /// @addtogroup gtx_scalar_relational
  24. /// @{
  25. /// @}
  26. }//namespace glm
  27. #include "scalar_relational.inl"