00001
00002
00004
00005
00006
00007
00009
00010
00011
00013
00014 #ifndef glm_gtx_perpendicular
00015 #define glm_gtx_perpendicular
00016
00017
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 }
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 }
00063 }
00064 }
00065
00066 #include "perpendicular.inl"
00067
00068 namespace glm{using namespace gtx::perpendicular;}
00069
00070 #endif//glm_gtx_perpendicular