Simpact Cyan
Population based event driven simulation using mNRM
point2d.h
1 #ifndef POINT2D_H
2 
3 #define POINT2D_H
4 
5 struct Point2D
6 {
7  Point2D() { }
8  Point2D(double x0, double y0) { x = x0; y = y0; }
9 
10  double x, y;
11 };
12 
13 #endif // POINT2D_H