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 namespace gtx{
00027 namespace perpendicular
00028 {
00031
00034 template <typename T>
00035 detail::tvec2<T> perp(
00036 detail::tvec2<T> const & x,
00037 detail::tvec2<T> const & Normal);
00038
00041 template <typename T>
00042 detail::tvec3<T> perp(
00043 detail::tvec3<T> const & x,
00044 detail::tvec3<T> const & Normal);
00045
00048 template <typename T>
00049 detail::tvec4<T> perp(
00050 detail::tvec4<T> const & x,
00051 detail::tvec4<T> const & Normal);
00052
00054 }
00055 }
00056 }
00057
00058 #include "perpendicular.inl"
00059
00060 namespace glm{using namespace gtx::perpendicular;}
00061
00062 #endif//glm_gtx_perpendicular