You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
395 B
16 lines
395 B
/// @ref gtx_log_base
|
|
|
|
namespace glm
|
|
{
|
|
template<typename genType>
|
|
GLM_FUNC_QUALIFIER genType log(genType const& x, genType const& base)
|
|
{
|
|
return glm::log(x) / glm::log(base);
|
|
}
|
|
|
|
template<length_t L, typename T, qualifier Q>
|
|
GLM_FUNC_QUALIFIER vec<L, T, Q> log(vec<L, T, Q> const& x, vec<L, T, Q> const& base)
|
|
{
|
|
return glm::log(x) / glm::log(base);
|
|
}
|
|
}//namespace glm
|
|
|