|
|
@ -29,9 +29,6 @@ |
|
|
|
|
|
|
|
namespace math { |
|
|
|
|
|
|
|
/// @addtogroup utility
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Linearly interpolates between @p x and @p y. |
|
|
|
* |
|
|
@ -90,8 +87,6 @@ inline T log_lerp(const T& x, const T& y, S a) |
|
|
|
return x * std::pow(y / x, a); |
|
|
|
} |
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
|
|
|
} // namespace math
|
|
|
|
|
|
|
|
#endif // ANTKEEPER_MATH_INTERPOLATION_HPP
|