aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/Math/vector2d.hpp
blob: 1a6d2856f07cb73561872b332a650a3456f8b606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef YAGE_MATH_VECTOR2D_HPP
#define YAGE_MATH_VECTOR2D_HPP

#include "vector.hpp"

namespace yage
{

class Vector2D : public Vector
{
public:
	Vector2D(long double x=0.L, long double y=0.L);

	long double getX() const;
	long double getY() const;
};

} // yage

#endif