1.0.0 API documentation
E:
Github
g-truc
glm
glm
gtx
log_base.hpp
Go to the documentation of this file.
1
13
#pragma once
14
15
// Dependency:
16
#include "../glm.hpp"
17
18
#ifndef GLM_ENABLE_EXPERIMENTAL
19
# error "GLM: GLM_GTX_log_base is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
20
#elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
21
# pragma message("GLM: GLM_GTX_log_base extension included")
22
#endif
23
24
namespace
glm
25
{
28
31
template
<
typename
genType>
32
GLM_FUNC_DECL genType
log
(
33
genType
const
& x,
34
genType
const
& base);
35
38
template
<length_t L,
typename
T, qualifier Q>
39
GLM_FUNC_DECL vec<L, T, Q>
sign
(
40
vec<L, T, Q>
const
& x,
41
vec<L, T, Q>
const
& base);
42
44
}
//namespace glm
45
46
#include "log_base.inl"
glm::sign
GLM_FUNC_DECL vec< L, T, Q > sign(vec< L, T, Q > const &x, vec< L, T, Q > const &base)
Logarithm for any base.
glm::log
GLM_FUNC_DECL genType log(genType const &x, genType const &base)
Logarithm for any base.
Generated by
1.8.18