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 #ifndef glm_core_func_exponential
00037 #define glm_core_func_exponential GLM_VERSION
00038
00039 namespace glm
00040 {
00043
00052 template <typename genType>
00053 genType pow(genType const & x, genType const & y);
00054
00062 template <typename genType>
00063 genType exp(genType const & x);
00064
00074 template <typename genType>
00075 genType log(genType const & x);
00076
00084 template <typename genType>
00085 genType exp2(genType const & x);
00086
00095 template <typename genType>
00096 genType log2(genType const & x);
00097
00105 template <typename genType>
00106 genType sqrt(genType const & x);
00107
00115 template <typename genType>
00116 genType inversesqrt(genType const & x);
00117
00119 }
00120
00121 #include "func_exponential.inl"
00122
00123 #endif//glm_core_func_exponential