sta-peak/include/sta/math/utils.hpp

17 lines
271 B
C++

#ifndef INC_UTILS_HPP_
#define INC_UTILS_HPP_
#include <math.h>
namespace sta
{
namespace math
{
float fast_inv_sqrt(float);
float clip(float value, float min, float max);
} // namespace math
} // namespace sta
#endif /* INC_UTILS_HPP_ */