Program Listing for File MathFunctions.hpp
↰ Return to documentation for file (src/LouLib/Math/MathFunctions.hpp
)
#ifndef LOULIB_MATHFUNCTIONS_HPP
#define LOULIB_MATHFUNCTIONS_HPP
namespace LouLib{
namespace Math{
int signum(double a);
double clamp(double val, double min, double max);
double constrainAngle(double x);
double angleDifference(double final, double initial);
}
}
#endif //LOULIB_MATHFUNCTIONS_HPP