]> git.tdb.fi Git - netvis.git/blob - source/vector2.h
0ff927c25ee6bd9e5d55cab199be8d2a204867ab
[netvis.git] / source / vector2.h
1 #ifndef VECTOR2_H_
2 #define VECTOR2_H_
3
4 struct Vector2
5 {
6         float x, y;
7
8         Vector2(): x(0), y(0) { }
9         Vector2(float x_, float y_): x(x_), y(y_) { }
10 };
11
12 #endif