extend.hpp 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /// @ref gtx_extend
  2. /// @file glm/gtx/extend.hpp
  3. ///
  4. /// @see core (dependence)
  5. ///
  6. /// @defgroup gtx_extend GLM_GTX_extend
  7. /// @ingroup gtx
  8. ///
  9. /// Include <glm/gtx/extend.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. #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  18. # pragma message("GLM: GLM_GTX_extend extension included")
  19. #endif
  20. namespace glm
  21. {
  22. /// @addtogroup gtx_extend
  23. /// @{
  24. /// Extends of Length the Origin position using the (Source - Origin) direction.
  25. /// @see gtx_extend
  26. template<typename genType>
  27. GLM_FUNC_DECL genType extend(
  28. genType const& Origin,
  29. genType const& Source,
  30. typename genType::value_type const Length);
  31. /// @}
  32. }//namespace glm
  33. #include "extend.inl"