#ifndef VECTOR2D_H_
#define VECTOR2D_H_
typedef struct Vector2d_t {
float x;
float y;
} Vector2d;
#endif // VECTOR2D_H_