mirror of
https://github.com/nasa/trick.git
synced 2025-01-15 17:29:48 +00:00
11 lines
172 B
C++
11 lines
172 B
C++
#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
|