00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_gtx_extend
00014 #define glm_gtx_extend
00015
00016
00017 #include "../glm.hpp"
00018
00019 namespace glm
00020 {
00021 namespace test{
00022 void main_gtx_extend();
00023 }
00024
00025 namespace gtx{
00027 namespace extend
00028 {
00031 template <typename genType>
00032 genType extend(
00033 genType const & Origin,
00034 genType const & Source,
00035 typename genType::value_type const Length);
00036
00037 }
00038 }
00039 }
00040
00041 #define GLM_GTX_extend namespace gtx::extend
00042 #ifndef GLM_GTX_GLOBAL
00043 namespace glm {using GLM_GTX_extend;}
00044 #endif//GLM_GTX_GLOBAL
00045
00046 #include "extend.inl"
00047
00048 #endif//glm_gtx_extend