00001 
00002 
00004 
00005 
00006 
00007 
00009 
00010 
00012 
00013 #ifndef glm_gtx_projection
00014 #define glm_gtx_projection
00015 
00016 
00017 #include "../glm.hpp"
00018 
00019 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00020 #       pragma message("GLM: GLM_GTX_projection extension included")
00021 #endif
00022 
00023 namespace glm{
00024 namespace gtx{
00025 namespace projection 
00026 {
00029 
00032         template <typename T> 
00033         detail::tvec2<T> proj(
00034                 detail::tvec2<T> const & x, 
00035                 detail::tvec2<T> const & Normal);
00036                 
00039         template <typename T> 
00040         detail::tvec3<T> proj(
00041                 detail::tvec3<T> const & x, 
00042                 detail::tvec3<T> const & Normal);
00043 
00046         template <typename T> 
00047         detail::tvec4<T> proj(
00048                 detail::tvec4<T> const & x, 
00049                 detail::tvec4<T> const & Normal);
00050 
00052 }
00053 }
00054 }
00055 
00056 #include "projection.inl"
00057 
00058 namespace glm{using namespace gtx::projection;}
00059 
00060 #endif//glm_gtx_projection