25 lines
317 B
C++
25 lines
317 B
C++
#ifndef UTILITIES
|
|
#define UTILITIES
|
|
|
|
|
|
class Utilities
|
|
{
|
|
public:
|
|
Utilities()
|
|
{
|
|
|
|
}
|
|
|
|
static float degToRad(int degrees)
|
|
{
|
|
return 3.14 / 180 * degrees; // Only the first three digits of pi
|
|
}
|
|
|
|
|
|
protected:
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|