75357b330c
Now using GLM instead of the custom math libraries. Sadly, this did not 100% fix the problem at hand but it does give some closure that the math is not the problem. Also it will be nice to have a general math library to not have to deal with creating every math function every time.
17 lines
379 B
C++
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
|