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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
#pragma once
template <class T>
struct Vec2
{
T x = 0;
T y = 0;
template <class TTarget>
Vec2<TTarget> Cast() const
{
return {
static_cast<TTarget>(x),
static_cast<TTarget>(y),
};
}
template <class TProxy>
void OperateIOProxy(TProxy& proxy)
{
proxy.Value(x);
proxy.Value(y);
}
friend constexpr bool operator==(const Vec2& a, const Vec2& b) = default;
friend constexpr Vec2 operator+(const Vec2& a, const Vec2& b) { return { a.x + b.x, a.y + b.y }; }
friend constexpr Vec2 operator-(const Vec2& a, const Vec2& b) { return { a.x - b.x, a.y - b.y }; }
friend constexpr Vec2 operator*(const Vec2& a, const Vec2& b) { return { a.x * b.x, a.y * b.y }; }
friend constexpr Vec2 operator/(const Vec2& a, const Vec2& b) { return { a.x / b.x, a.y / b.y }; }
friend constexpr Vec2 operator+(const Vec2& a, T n) { return { a.x + n, a.y + n }; }
friend constexpr Vec2 operator-(const Vec2& a, T n) { return { a.x - n, a.y - n }; }
friend constexpr Vec2 operator*(const Vec2& a, T n) { return { a.x * n, a.y * n }; }
friend constexpr Vec2 operator/(const Vec2& a, T n) { return { a.x / n, a.y / n }; }
};
using Vec2i = Vec2<int>;
using Vec2f = Vec2<float>;
template <class T>
struct Vec3
{
T x = 0;
T y = 0;
T z = 0;
template <class TTarget>
Vec3<TTarget> Cast() const
{
return {
static_cast<TTarget>(x),
static_cast<TTarget>(y),
static_cast<TTarget>(z),
};
}
template <class TProxy>
void OperateIOProxy(TProxy& proxy)
{
proxy.Value(x);
proxy.Value(y);
proxy.Value(z);
}
friend constexpr bool operator==(const Vec3& a, const Vec3& b) = default;
friend constexpr Vec3 operator+(const Vec3& a, const Vec3& b) { return { a.x + b.x, a.y + b.y, a.z + b.z }; }
friend constexpr Vec3 operator-(const Vec3& a, const Vec3& b) { return { a.x - b.x, a.y - b.y, a.z - b.z }; }
friend constexpr Vec3 operator*(const Vec3& a, const Vec3& b) { return { a.x * b.x, a.y * b.y, a.z * b.z }; }
friend constexpr Vec3 operator/(const Vec3& a, const Vec3& b) { return { a.x / b.x, a.y / b.y, a.z / b.z }; }
friend constexpr Vec3 operator+(const Vec3& a, T n) { return { a.x + n, a.y + n, a.z + n }; }
friend constexpr Vec3 operator-(const Vec3& a, T n) { return { a.x - n, a.y - n, a.z - n }; }
friend constexpr Vec3 operator*(const Vec3& a, T n) { return { a.x * n, a.y * n, a.z * n }; }
friend constexpr Vec3 operator/(const Vec3& a, T n) { return { a.x / n, a.y / n, a.z / n }; }
};
using Vec3i = Vec3<int>;
using Vec3f = Vec3<float>;
template <class T>
struct Vec4
{
T x = 0;
T y = 0;
T z = 0;
T w = 0;
template <class TTarget>
Vec4<TTarget> Cast() const
{
return {
static_cast<TTarget>(x),
static_cast<TTarget>(y),
static_cast<TTarget>(z),
static_cast<TTarget>(w),
};
}
template <class TProxy>
void OperateIOProxy(TProxy& proxy)
{
proxy.Value(x);
proxy.Value(y);
proxy.Value(z);
proxy.Value(w);
}
friend constexpr bool operator==(const Vec4& a, const Vec4& b) = default;
friend constexpr Vec4 operator+(const Vec4& a, const Vec4& b) { return { a.x + b.x, a.y + b.y, a.z + b.z, a.w + b.w }; }
friend constexpr Vec4 operator-(const Vec4& a, const Vec4& b) { return { a.x - b.x, a.y - b.y, a.z - b.z, a.w - b.w }; }
friend constexpr Vec4 operator*(const Vec4& a, const Vec4& b) { return { a.x * b.x, a.y * b.y, a.z * b.z, a.w * b.w }; }
friend constexpr Vec4 operator/(const Vec4& a, const Vec4& b) { return { a.x / b.x, a.y / b.y, a.z / b.z, a.w / b.w }; }
friend constexpr Vec4 operator+(const Vec4& a, T n) { return { a.x + n, a.y + n, a.z + n, a.w + n }; }
friend constexpr Vec4 operator-(const Vec4& a, T n) { return { a.x - n, a.y - n, a.z - n, a.w - n }; }
friend constexpr Vec4 operator*(const Vec4& a, T n) { return { a.x * n, a.y * n, a.z * n, a.w * n }; }
friend constexpr Vec4 operator/(const Vec4& a, T n) { return { a.x / n, a.y / n, a.z / n, a.w / n }; }
};
using Vec4i = Vec4<int>;
using Vec4f = Vec4<float>;
|