fast_trigonometry.hpp
Go to the documentation of this file.
00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 
00023 
00024 
00025 
00026 
00027 
00028 
00029 
00030 
00031 
00032 
00033 
00034 
00035 
00036 
00037 
00038 #ifndef GLM_GTX_fast_trigonometry
00039 #define GLM_GTX_fast_trigonometry GLM_VERSION
00040 
00041 // Dependency:
00042 #include "../glm.hpp"
00043 
00044 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00045 #       pragma message("GLM: GLM_GTX_fast_trigonometry extension included")
00046 #endif
00047 
00048 namespace glm
00049 {
00052 
00056     template <typename T> 
00057         T fastSin(const T& angle);
00058 
00062         template <typename T> 
00063         T fastCos(const T& angle);
00064 
00068         template <typename T> 
00069         T fastTan(const T& angle);
00070 
00074         template <typename T> 
00075         T fastAsin(const T& angle);
00076 
00080     template <typename T> 
00081         T fastAcos(const T& angle);
00082 
00086         template <typename T> 
00087         T fastAtan(const T& y, const T& x);
00088 
00092     template <typename T> 
00093         T fastAtan(const T& angle);
00094 
00096 }//namespace glm
00097 
00098 #include "fast_trigonometry.inl"
00099 
00100 #endif//GLM_GTX_fast_trigonometry