1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
#ifndef _ASURA_ENGINE_VECTOR2_H__
#define _ASURA_ENGINE_VECTOR2_H__
#include <asura-utils/Classes.h>
namespace_begin(AsuraEngine)
namespace_begin(Math)
template <typename T>
class Vector2
{
public:
Vector2();
Vector2(T X, T Y);
template <typename U>
explicit Vector2(const Vector2<U>& vector);
void Set(T X, T Y);
T x; ///< X coordinate of the vector
T y; ///< Y coordinate of the vector
};
template <typename T>
Vector2<T> operator -(const Vector2<T>& right);
template <typename T>
Vector2<T>& operator +=(Vector2<T>& left, const Vector2<T>& right);
template <typename T>
Vector2<T>& operator -=(Vector2<T>& left, const Vector2<T>& right);
template <typename T>
Vector2<T> operator +(const Vector2<T>& left, const Vector2<T>& right);
template <typename T>
Vector2<T> operator -(const Vector2<T>& left, const Vector2<T>& right);
template <typename T>
Vector2<T> operator *(const Vector2<T>& left, T right);
template <typename T>
Vector2<T> operator *(T left, const Vector2<T>& right);
template <typename T>
Vector2<T>& operator *=(Vector2<T>& left, T right);
template <typename T>
Vector2<T> operator /(const Vector2<T>& left, T right);
template <typename T>
Vector2<T>& operator /=(Vector2<T>& left, T right);
template <typename T>
bool operator ==(const Vector2<T>& left, const Vector2<T>& right);
template <typename T>
bool operator !=(const Vector2<T>& left, const Vector2<T>& right);
#include "Vector2.inc"
typedef Vector2<int> Vector2i;
typedef Vector2<unsigned int> Vector2u;
typedef Vector2<float> Vector2f;
namespace_end
namespace_end
namespace AEMath = AsuraEngine::Math;
#endif
|