Rally X
ELEN3009 Project by Justin Wernick and David Schneider
source/logic/MazeMath.h
Go to the documentation of this file.
00001 #ifndef MAZEMATH_H
00002 #define MAZEMATH_H
00003 
00004 #include <cmath>
00005 
00012 class MazeMath
00013 {
00014     public:
00025         static double round(double value);
00026 
00039         static double distance(double x1, double y1, double x2, double y2);
00040 
00041     private:
00048         MazeMath();
00052         MazeMath(const MazeMath& ref);
00056         MazeMath& operator=(const MazeMath& rhs);
00057 };
00058 
00059 #endif // MAZEMATH_H
 All Classes Files Functions Variables Typedefs Enumerations Enumerator