Flow Visualisation
extend.hpp
Go to the documentation of this file.
1 
38 #ifndef GLM_GTX_extend
39 #define GLM_GTX_extend GLM_VERSION
40 
41 // Dependency:
42 #include "../glm.hpp"
43 
44 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
45 # pragma message("GLM: GLM_GTX_extend extension included")
46 #endif
47 
48 namespace glm
49 {
52 
55  template <typename genType>
56  genType extend(
57  genType const & Origin,
58  genType const & Source,
59  typename genType::value_type const Length);
60 
62 }//namespace glm
63 
64 #include "extend.inl"
65 
66 #endif//GLM_GTX_extend
genType extend(genType const &Origin, genType const &Source, typename genType::value_type const Length)
Definition: _detail.hpp:38