mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-09-01 17:29:18 +02:00
17 lines
395 B
C++
17 lines
395 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
|