1
0
Fork 0
spectre/source/Math/Logarithm.cpp
2016-01-10 09:26:43 +01:00

20 lines
310 B
C++

// Logarithmic functions.
#include <cstdlib>
#include <Spectre/Math/Math.h>
namespace math {
#define LOG2INBASE10 0.30102999566f
double log(double base, double value) {
return log10(value) / log10(base);
}
double log2(double value) {
return log10(value) / LOG2INBASE10;
}
}; // namespace math