]> git.tdb.fi Git - r2c2.git/blob - source/libmarklin/geometry.h
Initial revision
[r2c2.git] / source / libmarklin / geometry.h
1 #ifndef LIBMARKLIN_GEOMETRY_H_
2 #define LIBMARKLIN_GEOMETRY_H_
3
4 #include <vector>
5
6 namespace Marklin {
7
8 struct Point
9 {
10         float x,y,z;
11
12         Point(): x(0), y(0), z(0) { }
13         Point(float x_, float y_, float z_): x(x_), y(y_), z(z_) { }
14 };
15
16 } // namespace Marklin
17
18 #endif