GLM  0.9.5
log_base.hpp
Go to the documentation of this file.
1 
38 #ifndef GLM_GTX_log_base
39 #define GLM_GTX_log_base
40 
41 // Dependency:
42 #include "../glm.hpp"
43 
44 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
45 # pragma message("GLM: GLM_GTX_log_base extension included")
46 #endif
47 
48 namespace glm
49 {
52 
55  template <typename genType>
56  genType log(
57  genType const & x,
58  genType const & base);
59 
61 }//namespace glm
62 
63 #include "log_base.inl"
64 
65 #endif//GLM_GTX_log_base
GLM_FUNC_DECL genType log(genType const &x)
Returns the natural logarithm of x, i.e., returns the value y which satisfies the equation x = e^y...