perpendicular.hpp

00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
00004 // Created : 2005-12-21
00005 // Updated : 2009-03-06
00006 // Licence : This source is under MIT License
00007 // File    : glm/gtx/perpendicular.hpp
00009 // Dependency:
00010 // - GLM core
00011 // - GLM_GTX_projection
00013 
00014 #ifndef glm_gtx_perpendicular
00015 #define glm_gtx_perpendicular
00016 
00017 // Dependency:
00018 #include "../glm.hpp"
00019 #include "../gtx/projection.hpp"
00020 
00021 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00022 #       pragma message("GLM: GLM_GTX_perpendicular extension included")
00023 #endif
00024 
00025 namespace glm
00026 {
00027         namespace test{
00028                 void main_gtx_perpendicular();
00029         }//namespace test
00030 
00031     namespace gtx{
00033     namespace perpendicular
00034     {
00037 
00040                 template <typename T> 
00041                 detail::tvec2<T> perp(
00042                         detail::tvec2<T> const & x, 
00043                         detail::tvec2<T> const & Normal);
00044 
00047                 template <typename T> 
00048                 detail::tvec3<T> perp(
00049                         detail::tvec3<T> const & x, 
00050                         detail::tvec3<T> const & Normal);
00051 
00054                 template <typename T> 
00055                 detail::tvec4<T> perp(
00056                         detail::tvec4<T> const & x, 
00057                         detail::tvec4<T> const & Normal);
00058 
00059 
00061                 
00062     }//namespace perpendicular
00063     }//namespace gtx
00064 }//namespace glm
00065 
00066 #include "perpendicular.inl"
00067 
00068 namespace glm{using namespace gtx::perpendicular;}
00069 
00070 #endif//glm_gtx_perpendicular