00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_gtx_fast_trigonometry
00014 #define glm_gtx_fast_trigonometry
00015
00016
00017 #include "../glm.hpp"
00018
00019 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00020 # pragma message("GLM: GLM_GTX_fast_trigonometry extension included")
00021 #endif
00022
00023 namespace glm
00024 {
00025 namespace test{
00026 void main_gtx_fast_trigonometry();
00027 }
00028
00029 namespace gtx{
00031 namespace fast_trigonometry
00032 {
00035
00039 template <typename T>
00040 T fastSin(const T& angle);
00041
00045 template <typename T>
00046 T fastCos(const T& angle);
00047
00051 template <typename T>
00052 T fastTan(const T& angle);
00053
00057 template <typename T>
00058 T fastAsin(const T& angle);
00059
00063 template <typename T>
00064 T fastAcos(const T& angle);
00065
00069 template <typename T>
00070 T fastAtan(const T& y, const T& x);
00071
00075 template <typename T>
00076 T fastAtan(const T& angle);
00077
00079
00080 }
00081 }
00082 }
00083
00084 #include "fast_trigonometry.inl"
00085
00086 namespace glm{using namespace gtx::fast_trigonometry;}
00087
00088 #endif//glm_gtx_fast_trigonometry