00001
00002
00004
00005
00006
00007
00009
00010
00011
00013
00014 #ifndef glm_gtx_normalize_dot
00015 #define glm_gtx_normalize_dot
00016
00017
00018 #include "../glm.hpp"
00019 #include "../gtx/fast_square_root.hpp"
00020
00021 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00022 # pragma message("GLM: GLM_GTX_normalize_dot extension included")
00023 #endif
00024
00025 namespace glm{
00026 namespace gtx{
00027 namespace normalize_dot
00028 {
00029 using namespace gtx::fast_square_root;
00030
00033
00037 template <typename genType>
00038 typename genType::value_type normalizeDot(
00039 genType const & x,
00040 genType const & y);
00041
00045 template <typename genType>
00046 typename genType::value_type fastNormalizeDot(
00047 genType const & x,
00048 genType const & y);
00049
00051 }
00052 }
00053 }
00054
00055 #include "normalize_dot.inl"
00056
00057 namespace glm{using namespace gtx::normalize_dot;}
00058
00059 #endif//glm_gtx_normalize_dot