mirror of
https://github.com/nasa/trick.git
synced 2025-01-09 06:22:42 +00:00
14 lines
220 B
C++
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
|