ES-DE/glm/gtx/log_base.inl
Leon Styhre 0116f4b65d Squashed 'external/glm/' content from commit bf71a8349
git-subtree-dir: external/glm
git-subtree-split: bf71a834948186f4097caa076cd2663c69a10e1e
2021-08-13 15:26:10 +02:00

17 lines
379 B
C++

/// @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