mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
18 lines
296 B
C++
18 lines
296 B
C++
#ifndef _UTILS_MATH_HPP_
|
|
#define _UTILS_MATH_HPP_
|
|
|
|
#include <string>
|
|
#include <algorithm>
|
|
|
|
namespace math
|
|
{
|
|
template<typename T>
|
|
T cap(T value, T min_value, T max_value)
|
|
{
|
|
value = std::min<T>(value, max_value);
|
|
value = std::max<T>(value, min_value);
|
|
return value;
|
|
}
|
|
}
|
|
|
|
#endif
|