2017-06-06 19:20:12 +00:00
|
|
|
/*
|
|
|
|
* PURPOSE: (Class to represent a point)
|
|
|
|
*/
|
2016-02-18 22:14:44 +00:00
|
|
|
#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
|