TDME2 1.9.121
Vector2.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4
5#include <tdme/tdme.h>
7#include <tdme/math/Math.h>
8
9using std::array;
10
12
13/**
14 * 2D vector 2 class
15 * @author Andreas Drewke
16 * @version $Id$
17 */
19{
20 friend class Matrix2D3x3;
21
22private:
23 array<float, 2> data;
24
25public:
26 /**
27 * Public constructor
28 */
29 inline Vector2() {
30 data.fill(0.0f);
31 }
32
33 /**
34 * Public constructor
35 * @param x x
36 * @param y y
37 */
38 inline Vector2(float x, float y) {
39 data[0] = x;
40 data[1] = y;
41 }
42
43 /**
44 * Public constructor
45 * @param v float values
46 */
47 inline Vector2(const array<float, 2>& v) {
48 data = v;
49 }
50
51 /**
52 * Public constructor
53 * @param v v
54 */
55 inline Vector2(const Vector2& v) {
56 data = v.data;
57 }
58
59 /**
60 * Set up vector
61 * @param x x
62 * @param y y
63 * @return this vector
64 */
65 inline Vector2& set(float x, float y) {
66 data[0] = x;
67 data[1] = y;
68 return *this;
69 }
70
71 /**
72 * Set up vector
73 * @param v float array containing x,y values
74 * @return this vector
75 */
76 inline Vector2& set(const array<float, 2>& v) {
77 data = v;
78 return *this;
79 }
80
81 /**
82 * Set up vector
83 * @param v v
84 * @return this vector
85 */
86 inline Vector2& set(const Vector2& v) {
87 data = v.data;
88 return *this;
89 }
90
91 /**
92 * @return x
93 */
94 inline float getX() const {
95 return data[0];
96 }
97
98 /**
99 * set X
100 * @param x x
101 * @return this vector
102 */
103 inline Vector2& setX(float x) {
104 data[0] = x;
105 return *this;
106 }
107
108 /**
109 * @return y
110 */
111 inline float getY() const {
112 return data[1];
113 }
114
115 /**
116 * set Y
117 * @param y y
118 */
119 inline Vector2& setY(float y) {
120 data[1] = y;
121 return *this;
122 }
123
124 /**
125 * Adds a vector
126 * @param v v
127 * @return this vector
128 */
129 inline Vector2& add(const Vector2& v) {
130 data[0] += v.data[0];
131 data[1] += v.data[1];
132 return *this;
133 }
134
135 /**
136 * Subtracts a vector
137 * @param v v
138 * @return this vector
139 */
140 inline Vector2& sub(const Vector2& v) {
141 data[0] -= v.data[0];
142 data[1] -= v.data[1];
143 return *this;
144 }
145
146 /**
147 * Scale this vector
148 * @param scale scale
149 * @return this vector
150 */
151 inline Vector2& scale(const float scale) {
152 data[0] *= scale;
153 data[1] *= scale;
154 return *this;
155 }
156
157 /**
158 * Scale this vector
159 * @param scale scale
160 * @return this vector
161 */
162 inline Vector2& scale(const Vector2& scale) {
163 data[0] *= scale.data[0];
164 data[1] *= scale.data[1];
165 return *this;
166 }
167
168 /**
169 * @return the vectors length
170 */
171 inline float computeLength() const {
172 return Math::sqrt((data[0] * data[0]) + (data[1] * data[1]));
173 }
174
175 /**
176 * Array access operator
177 * @param i index
178 * @return vector3 component
179 */
180 inline float& operator[](int i) {
181 return data[i];
182 }
183
184 /**
185 * Const array access operator
186 * @param i index
187 * @return vector3 component
188 */
189 inline const float& operator[](int i) const {
190 return data[i];
191 }
192
193 /**
194 * Operator +
195 * @param v vector to add
196 * @return new vector (this + v)
197 */
198 inline Vector2 operator +(const Vector2& v) const {
199 auto r = this->clone().add(v);
200 return r;
201 }
202
203 /**
204 * Operator -
205 * @param v vector to subtract
206 * @return new vector (this - v)
207 */
208 inline Vector2 operator -(const Vector2& v) const {
209 auto r = this->clone().sub(v);
210 return r;
211 }
212
213 /**
214 * Operator * (float)
215 * @param f value to multiply by
216 * @return new vector (this * f)
217 */
218 inline Vector2 operator *(const float f) const {
219 auto r = this->clone().scale(f);
220 return r;
221 }
222
223 /**
224 * Operator * (Vector2&)
225 * @param v vector to multiply by
226 * @return new vector (this * v)
227 */
228 inline Vector2 operator *(const Vector2& v) const {
229 auto r = this->clone().scale(v);
230 return r;
231 }
232
233 /**
234 * Operator / (f)
235 * @param v value to divide by
236 * @return new vector (this / f)
237 */
238 inline Vector2 operator /(const float f) const {
239 auto r = this->clone().scale(1.0f / f);
240 return r;
241 }
242
243 /**
244 * Operator / (Vector2&)
245 * @param v vector to divide by
246 * @return new vector (this / v)
247 */
248 inline Vector2 operator /(const Vector2& v) const {
249 auto vInverted = Vector2(1.0f / v[0], 1.0f / v[1]);
250 auto r = this->clone().scale(vInverted);
251 return r;
252 }
253
254 /**
255 * Operator +=
256 * @param v vector to add
257 * @return this vector added by v
258 */
259 inline Vector2& operator +=(const Vector2& v) {
260 return this->add(v);
261 }
262
263 /**
264 * Operator -=
265 * @param v vector to substract
266 * @return this vector substracted by v
267 */
269 return this->sub(v);
270 }
271
272 /**
273 * Operator *=
274 * @param v vector to multiply by
275 * @return this vector multiplied by v
276 */
278 return this->scale(v);
279 }
280
281 /**
282 * Operator /=
283 * @param v vector to devide by
284 * @return this vector devided by v
285 */
287 auto vInverted = Vector2(1.0f / v[0], 1.0f / v[1]);
288 return this->scale(vInverted);
289 }
290
291 /**
292 * Operator *=
293 * @param f float to multiply by
294 * @return this vector multiplied by f
295 */
296 inline Vector2& operator *=(const float f) {
297 return this->scale(f);
298 }
299
300 /**
301 * Operator /=
302 * @param f float to divide by
303 * @return this vector divided by f
304 */
305 inline Vector2& operator /=(const float f) {
306 return this->scale(1.0f / f);
307 }
308
309 /**
310 * Equality comparison operator
311 * @param v vector to compare to
312 * @return equality
313 */
314 inline bool operator ==(const Vector2& v) const {
315 return this->equals(v);
316 }
317
318 /**
319 * Non equality comparison operator
320 * @param v vector to compare to
321 * @return non equality
322 */
323 inline bool operator !=(const Vector2& v) const {
324 return this->equals(v) == false;
325 }
326
327 /**
328 * @return vector as array
329 */
330 inline array<float, 2>& getArray() const {
331 return (array<float, 2>&)data;
332 }
333
334 /**
335 * Clones the vector
336 * @return new cloned vector
337 */
338 inline Vector2 clone() const {
339 return Vector2(data);
340 }
341
342 /**
343 * Compares this vector with given vector
344 * @param v vector v
345 * @return equality
346 */
347 inline bool equals(const Vector2& v) const {
348 return equals(v, Math::EPSILON);
349 }
350
351 /**
352 * Compares this vector with given vector
353 * @param v vector v
354 * @param tolerance tolerance per component(x, y, z)
355 * @return equality
356 */
357 inline bool equals(const Vector2& v, float tolerance) const {
358 return (this == &v) ||
359 (
360 Math::abs(data[0] - v.data[0]) < tolerance &&
361 Math::abs(data[1] - v.data[1]) < tolerance
362 );
363 }
364
365};
Standard math functions.
Definition: Math.h:21
static float sqrt(float value)
Returns the square of given value.
Definition: Math.h:289
static constexpr float EPSILON
Definition: Math.h:25
static int32_t abs(int32_t value)
Returns absolute value.
Definition: Math.h:91
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
2D vector 2 class
Definition: Vector2.h:19
Vector2 & set(const Vector2 &v)
Set up vector.
Definition: Vector2.h:86
float getY() const
Definition: Vector2.h:111
Vector2 & operator+=(const Vector2 &v)
Operator +=.
Definition: Vector2.h:259
bool equals(const Vector2 &v) const
Compares this vector with given vector.
Definition: Vector2.h:347
Vector2 & set(float x, float y)
Set up vector.
Definition: Vector2.h:65
float getX() const
Definition: Vector2.h:94
float computeLength() const
Definition: Vector2.h:171
Vector2 clone() const
Clones the vector.
Definition: Vector2.h:338
Vector2 & scale(const float scale)
Scale this vector.
Definition: Vector2.h:151
Vector2(const array< float, 2 > &v)
Public constructor.
Definition: Vector2.h:47
Vector2 operator+(const Vector2 &v) const
Operator +.
Definition: Vector2.h:198
Vector2 & scale(const Vector2 &scale)
Scale this vector.
Definition: Vector2.h:162
Vector2()
Public constructor.
Definition: Vector2.h:29
array< float, 2 > data
Definition: Vector2.h:23
Vector2 & sub(const Vector2 &v)
Subtracts a vector.
Definition: Vector2.h:140
Vector2 & setX(float x)
set X
Definition: Vector2.h:103
Vector2 & operator-=(Vector2 &v)
Operator -=.
Definition: Vector2.h:268
Vector2 & operator/=(Vector2 &v)
Operator /=.
Definition: Vector2.h:286
Vector2 & set(const array< float, 2 > &v)
Set up vector.
Definition: Vector2.h:76
array< float, 2 > & getArray() const
Definition: Vector2.h:330
Vector2(const Vector2 &v)
Public constructor.
Definition: Vector2.h:55
Vector2 operator/(const float f) const
Operator / (f)
Definition: Vector2.h:238
Vector2 & add(const Vector2 &v)
Adds a vector.
Definition: Vector2.h:129
const float & operator[](int i) const
Const array access operator.
Definition: Vector2.h:189
float & operator[](int i)
Array access operator.
Definition: Vector2.h:180
Vector2 operator-(const Vector2 &v) const
Operator -.
Definition: Vector2.h:208
Vector2 operator*(const float f) const
Operator * (float)
Definition: Vector2.h:218
bool equals(const Vector2 &v, float tolerance) const
Compares this vector with given vector.
Definition: Vector2.h:357
Vector2 & setY(float y)
set Y
Definition: Vector2.h:119
Vector2 & operator*=(Vector2 &v)
Operator *=.
Definition: Vector2.h:277
bool operator!=(const Vector2 &v) const
Non equality comparison operator.
Definition: Vector2.h:323
Vector2(float x, float y)
Public constructor.
Definition: Vector2.h:38
bool operator==(const Vector2 &v) const
Equality comparison operator.
Definition: Vector2.h:314