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 /// @brief Extend a position from a source to a position at a defined length. 10 /// 11 /// <glm/gtx/scalar_relational.hpp> need to be included to use these functionalities. 12 13 #pragma once 14 15 // Dependency: 16 #include "../glm.hpp" 17 18 #if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED) 19 # pragma message("GLM: GLM_GTX_extend extension included") 20 #endif 21 22 namespace glm 23 { 24 /// @addtogroup gtx_scalar_relational 25 /// @{ 26 27 28 29 /// @} 30 }//namespace glm 31 32 #include "scalar_relational.inl" 33