trick/trick_sims/SIM_wheelbot/models/Guidance/include/point.hh
2017-06-06 14:20:12 -05:00

14 lines
220 B
C++

/*
* PURPOSE: (Class to represent a point)
*/
#ifndef POINT_HH
#define POINT_HH
class Point {
public:
double x;
double y;
Point(): x(0.0),y(0.0) {}
Point(double X, double Y): x(X),y(Y) {}
};
#endif