]> git.tdb.fi Git - r2c2.git/blob - source/libmarklin/geometry.h
Add Id tags and copyright notices to files
[r2c2.git] / source / libmarklin / geometry.h
1 /* $Id$
2
3 This file is part of the MSP Märklin suite
4 Copyright © 2006-2008 Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
6 */
7
8 #ifndef LIBMARKLIN_GEOMETRY_H_
9 #define LIBMARKLIN_GEOMETRY_H_
10
11 #include <vector>
12
13 namespace Marklin {
14
15 struct Point
16 {
17         float x, y, z;
18
19         Point(): x(0), y(0), z(0) { }
20         Point(float x_, float y_, float z_): x(x_), y(y_), z(z_) { }
21 };
22
23 } // namespace Marklin
24
25 #endif