Tracore
Math.h
1 //
2 // Created by wrede on 02.05.16.
3 //
4 
5 #ifndef GBMOT_UTILITY_H
6 #define GBMOT_UTILITY_H
7 
8 #include <cstdlib>
9 
10 namespace util
11 {
12  class Math
13  {
14  public:
15  static double Clamp(double min, double max, double value);
16 
17  static double Lerp(double a, double b, double value);
18  };
19 }
20 
21 
22 #endif //GBMOT_UTILITY_H
Definition: FileIO.cpp:7
Definition: Math.h:12