func_exponential.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 #ifndef glm_core_func_exponential
00030 #define glm_core_func_exponential
00031 
00032 namespace glm
00033 {
00036 
00041         template <typename genType> 
00042         genType pow(genType const & x, genType const & y);
00043 
00048         template <typename genType> 
00049         genType exp(genType const & x);
00050 
00057         template <typename genType> 
00058         genType log(genType const & x);
00059 
00064         template <typename genType> 
00065         genType exp2(genType const & x);
00066 
00072         template <typename genType> 
00073         genType log2(genType const & x);
00074 
00079         template <typename genType> 
00080         genType sqrt(genType const & x);
00081     
00086         template <typename genType> 
00087         genType inversesqrt(genType const & x);
00088 
00090 }//namespace glm
00091 
00092 #include "func_exponential.inl"
00093 
00094 #endif//glm_core_func_exponential