TDME2 1.9.121
Vector3.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>
9
10using std::array;
11
15
16/**
17 * 3D vector 3 class
18 * @author andreas.drewke
19 * @version $Id$
20 */
22{
23 friend class Matrix4x4;
24 friend class Quaternion;
25 friend class Vector4;
26
27private:
28 array<float, 3> data;
29
30public:
31 /**
32 * Public constructor
33 */
34 inline Vector3() {
35 data.fill(0.0f);
36 }
37
38 /**
39 * Public constructor
40 * @param x x
41 * @param y y
42 * @param z z
43 */
44 inline Vector3(float x, float y, float z) {
45 data[0] = x;
46 data[1] = y;
47 data[2] = z;
48 }
49
50 /**
51 * Public constructor
52 * @param v values
53 */
54 inline Vector3(const array<float,3>& v) {
55 data = v;
56 }
57
58 /**
59 * Public constructor
60 * @param v vector
61 */
62 inline Vector3(const Vector3& v) {
63 data = v.data;
64 }
65
66 /**
67 * Set up vector
68 * @param x x
69 * @param y y
70 * @param z z
71 * @return this vector
72 */
73 inline Vector3& set(float x, float y, float z) {
74 data[0] = x;
75 data[1] = y;
76 data[2] = z;
77 return *this;
78 }
79
80 /**
81 * Set up vector
82 * @param v float array containing x,y,z values
83 * @return this vector
84 */
85 inline Vector3& set(const array<float, 3>& v) {
86 data = v;
87 return *this;
88 }
89
90 /**
91 * Set up vector
92 * @param v v
93 * @return this vector
94 */
95 inline Vector3& set(const Vector3& v) {
96 data = v.data;
97 return *this;
98 }
99
100 /**
101 * @return x
102 */
103 inline float getX() const {
104 return data[0];
105 }
106
107 /**
108 * Set X
109 * @param x x
110 */
111 inline Vector3& setX(float x) {
112 data[0] = x;
113 return *this;
114 }
115
116 /**
117 * @return y
118 */
119 inline float getY() const {
120 return data[1];
121 }
122
123 /**
124 * Set Y
125 * @param y y
126 * @return this vector
127 */
128 inline Vector3& setY(float y) {
129 data[1] = y;
130 return *this;
131 }
132
133 /**
134 * @return z
135 */
136 inline float getZ() const {
137 return data[2];
138 }
139
140 /**
141 * Set Z
142 * @param z z
143 * @return this vector
144 */
145 inline Vector3& setZ(float z) {
146 data[2] = z;
147 return *this;
148 }
149
150 /**
151 * Array access operator
152 * @param i index
153 * @return vector3 component
154 */
155 inline float& operator[](int i) {
156 return data[i];
157 }
158
159 /**
160 * Const array access operator
161 * @param i index
162 * @return vector3 component
163 */
164 inline const float& operator[](int i) const {
165 return data[i];
166 }
167
168 /**
169 * @return vector as array
170 */
171 inline array<float,3>& getArray() const {
172 return (array<float,3>&)data;
173 }
174
175 /**
176 * Compute the cross product of vector v1 and v2
177 * @param v1 vector 1
178 * @param v2 vector 2
179 * @return resulting vector
180 */
181 inline static Vector3 computeCrossProduct(const Vector3& v1, const Vector3& v2) {
182 return Vector3(
183 (v1.data[1] * v2.data[2]) - (v1.data[2] * v2.data[1]),
184 (v1.data[2] * v2.data[0]) - (v1.data[0] * v2.data[2]),
185 (v1.data[0] * v2.data[1]) - (v1.data[1] * v2.data[0])
186 );
187 }
188
189 /**
190 * Compute the dot product of vector v1 and v2
191 * @param v1 v1
192 * @param v2 v2
193 * @return Vector3
194 */
195 inline static float computeDotProduct(const Vector3& v1, const Vector3& v2) {
196 return (v1.data[0] * v2.data[0]) + (v1.data[1] * v2.data[1]) + (v1.data[2] * v2.data[2]);
197 }
198
199 /**
200 * @return the vectors length
201 */
202 inline float computeLength() const {
203 return Math::sqrt((data[0] * data[0]) + (data[1] * data[1]) + (data[2] * data[2]));
204 }
205
206 /**
207 * @return the vectors length squared
208 */
209 inline float computeLengthSquared() const {
210 return (data[0] * data[0]) + (data[1] * data[1]) + (data[2] * data[2]);
211 }
212
213 /**
214 * Compute Euler angles (rotation around x, y, z axes)
215 * @param euler euler angles
216 * @return if euler angles have been generated
217 */
218 inline bool computeEulerAngles(Vector3& euler) const {
220 return false;
221 }
222 Vector3 a(*this);
223 a.normalize();
224 // test around x axis
225 {
226 auto b = Vector3(0.0f, 1.0f, 0.0f);
227 auto n = Vector3(1.0f, 0.0f, 0.0f);
228 auto angle = Vector3::computeAngle(a, b, n);
229 euler.setX(angle);
230 }
231 // test around y axis
232 {
233 auto b = Vector3(0.0f, 0.0f, -1.0f);
234 auto n = Vector3(0.0f, 1.0f, 0.0f);
235 auto angle = Vector3::computeAngle(a, b, n);
236 euler.setY(angle);
237 }
238 // test around z axis
239 {
240 auto b = Vector3(0.0f, 1.0f, 0.0f);
241 auto n = Vector3(0.0f, 0.0f, 1.0f);
242 auto angle = Vector3::computeAngle(a, b, n);
243 euler.setZ(angle);
244 }
245 return true;
246 }
247
248 /**
249 * Computes angle between a and b from 0..180
250 * @param a vector a, vector to test, must be normalized
251 * @param b vector b, vector to test against, must be normalized
252 * @return
253 */
254 inline static float computeAngle(const Vector3& a, const Vector3& b) {
255 auto result = 180.0 / Math::PI * Math::acos(Math::clamp(Vector3::computeDotProduct(a, b), -1.0f, 1.0f));
256 return result;
257 }
258
259 /**
260 * Computes angle between a and b
261 * @param a vector a, vector to test, must be normalized
262 * @param b vector b, vector to test against, must be normalized
263 * @param n plane normal n where a and b live in, must be normalized
264 * @return
265 */
266 inline static float computeAngle(const Vector3& a, const Vector3& b, const Vector3& n) {
267 auto angle = Vector3::computeAngle(a, b);
269 if (Float::isNaN(sign) == true) sign = 1.0f;
270 return std::fmod(((angle * sign) + 360.0f), 360.0f);
271 }
272
273 /**
274 * Convert this vector to vector with positive vector components
275 * @return this vector
276 */
277 inline Vector3& abs() {
278 data[0] = Math::abs(data[0]);
279 data[1] = Math::abs(data[1]);
280 data[2] = Math::abs(data[2]);
281 return *this;
282 }
283
284 /**
285 * Normalize the vector
286 * @return this vector
287 */
288 inline Vector3& normalize() {
289 auto length = computeLength();
290 data[0] /= length;
291 data[1] /= length;
292 data[2] /= length;
293 return *this;
294 }
295
296 /**
297 * Adds a vector
298 * @param v v
299 * @return this vector
300 */
301 inline Vector3& add(const Vector3& v) {
302 data[0] += v.data[0];
303 data[1] += v.data[1];
304 data[2] += v.data[2];
305 return *this;
306 }
307
308 /**
309 * Adds a float to each vector component
310 * @param value v
311 * @return this vector
312 */
313 inline Vector3& add(float value) {
314 data[0] += value;
315 data[1] += value;
316 data[2] += value;
317 return *this;
318 }
319
320 /**
321 * Subtracts a vector
322 * @param v v
323 * @return this vector
324 */
325 inline Vector3& sub(const Vector3& v) {
326 data[0] -= v.data[0];
327 data[1] -= v.data[1];
328 data[2] -= v.data[2];
329 return *this;
330 }
331
332 /**
333 * Subtracts a float from each vector component
334 * @param value v
335 * @return this vector
336 */
337 inline Vector3& sub(float value) {
338 data[0] -= value;
339 data[1] -= value;
340 data[2] -= value;
341 return *this;
342 }
343
344 /**
345 * Scale this vector
346 * @param scale scale
347 * @return this vector
348 */
349 inline Vector3& scale(float scale) {
350 data[0] *= scale;
351 data[1] *= scale;
352 data[2] *= scale;
353 return *this;
354 }
355
356 /**
357 * Scale this vector
358 * @param scale scale
359 * @return this vector
360 */
361 inline Vector3& scale(const Vector3& scale) {
362 data[0] *= scale.data[0];
363 data[1] *= scale.data[1];
364 data[2] *= scale.data[2];
365 return *this;
366 }
367
368 /**
369 * Clones the vector
370 * @return new cloned vector
371 */
372 inline Vector3 clone() const {
373 return Vector3(data);
374 }
375
376 /**
377 * Compares this vector with given vector
378 * @param v vector v
379 * @return equality
380 */
381 inline bool equals(const Vector3& v) const {
382 return equals(v, Math::EPSILON);
383 }
384
385 /**
386 * Interpolates between vector 1 and vector2 by 0f<=t<=1f linearly
387 * @param v1 vector 1
388 * @param v2 vector 2
389 * @param t t
390 * @return resulting vector
391 */
392 inline static Vector3 interpolateLinear(const Vector3& v1, const Vector3& v2, float t) {
393 return Vector3(
394 (v2.data[0] * t) + ((1.0f - t) * v1.data[0]),
395 (v2.data[1] * t) + ((1.0f - t) * v1.data[1]),
396 (v2.data[2] * t) + ((1.0f - t) * v1.data[2])
397 );
398 }
399
400 /**
401 * Compares this vector with given vector
402 * @param v vector v
403 * @param tolerance tolerance per component(x, y, z)
404 * @return equality
405 */
406 inline bool equals(const Vector3& v, float tolerance) const {
407 return (this == &v) ||
408 (
409 Math::abs(data[0] - v.data[0]) < tolerance &&
410 Math::abs(data[1] - v.data[1]) < tolerance &&
411 Math::abs(data[2] - v.data[2]) < tolerance
412 );
413 }
414
415 /**
416 * Operator +
417 * @param v vector to add
418 * @return new vector (this + v)
419 */
420 inline Vector3 operator +(const Vector3& v) const {
421 auto r = this->clone().add(v);
422 return r;
423 }
424
425 /**
426 * Operator +
427 * @param v vector to subtract
428 * @return new vector (this - v)
429 */
430 inline Vector3 operator -(const Vector3& v) const {
431 auto r = this->clone().sub(v);
432 return r;
433 }
434
435 /**
436 * Operator * (float)
437 * @param f value to multiply by
438 * @return new vector (this * f)
439 */
440 inline Vector3 operator *(const float f) const {
441 auto r = this->clone().scale(f);
442 return r;
443 }
444
445 /**
446 * Operator * (Vector3&)
447 * @param v vector to multiply by
448 * @return new vector (this * v)
449 */
450 inline Vector3 operator *(const Vector3& v) const {
451 auto r = this->clone().scale(v);
452 return r;
453 }
454
455 /**
456 * Operator / (f)
457 * @param v value to divide by
458 * @return new vector (this / f)
459 */
460 inline Vector3 operator /(const float f) const {
461 auto r = this->clone().scale(1.0f / f);
462 return r;
463 }
464
465 /**
466 * Operator / (Vector3&)
467 * @param v vector to divide by
468 * @return new vector (this / v)
469 */
470 inline Vector3 operator /(const Vector3& v) const {
471 auto vInverted = Vector3(1.0f / v[0], 1.0f / v[1], 1.0f / v[2]);
472 auto r = this->clone().scale(vInverted);
473 return r;
474 }
475
476 /**
477 * Operator +=
478 * @param v vector to add
479 * @return this vector added by v
480 */
481 inline Vector3& operator +=(const Vector3& v) {
482 return this->add(v);
483 }
484
485 /**
486 * Operator -=
487 * @param v vector to substract
488 * @return this vector substracted by v
489 */
490 inline Vector3& operator -=(const Vector3& v) {
491 return this->sub(v);
492 }
493
494 /**
495 * Operator *=
496 * @param v vector to multiply by
497 * @return this vector multiplied by v
498 */
499 inline Vector3& operator *=(const Vector3& v) {
500 return this->scale(v);
501 }
502
503 /**
504 * Operator /=
505 * @param v vector to divide by
506 * @return this vector divided by v
507 */
508 inline Vector3& operator /=(const Vector3& v) {
509 auto vInverted = Vector3(1.0f / v[0], 1.0f / v[1], 1.0f / v[2]);
510 return this->scale(vInverted);
511 }
512
513 /**
514 * Operator *=
515 * @param f float to multiply by
516 * @return this vector multiplied by f
517 */
518 inline Vector3& operator *=(const float f) {
519 return this->scale(f);
520 }
521
522 /**
523 * Operator /=
524 * @param f float to divide by
525 * @return this vector divided by f
526 */
527 inline Vector3& operator /=(const float f) {
528 return this->scale(1.0f / f);
529 }
530
531 /**
532 * Equality comparison operator
533 * @param v vector to compare to
534 * @return equality
535 */
536 inline bool operator ==(const Vector3& v) const {
537 return this->equals(v);
538 }
539
540 /**
541 * Non equality comparison operator
542 * @param v vector to compare to
543 * @return non equality
544 */
545 inline bool operator !=(const Vector3& v) const {
546 return this->equals(v) == false;
547 }
548
549};
Standard math functions.
Definition: Math.h:21
static float sqrt(float value)
Returns the square of given value.
Definition: Math.h:289
static int clamp(int value, int min, int max)
Clamps a int value to min or max value.
Definition: Math.h:36
static float acos(float value)
Returns the arc cosine of a value.
Definition: Math.h:118
static constexpr float EPSILON
Definition: Math.h:25
static float sign(float value)
Returns sign of value.
Definition: Math.h:73
static int32_t abs(int32_t value)
Returns absolute value.
Definition: Math.h:91
static constexpr float PI
Definition: Math.h:24
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Quaternion class.
Definition: Quaternion.h:22
3D vector 3 class
Definition: Vector3.h:22
float getY() const
Definition: Vector3.h:119
Vector3(const Vector3 &v)
Public constructor.
Definition: Vector3.h:62
Vector3 operator-(const Vector3 &v) const
Operator +.
Definition: Vector3.h:430
static Vector3 interpolateLinear(const Vector3 &v1, const Vector3 &v2, float t)
Interpolates between vector 1 and vector2 by 0f<=t<=1f linearly.
Definition: Vector3.h:392
Vector3 & operator*=(const Vector3 &v)
Operator *=.
Definition: Vector3.h:499
Vector3(float x, float y, float z)
Public constructor.
Definition: Vector3.h:44
float getX() const
Definition: Vector3.h:103
float computeLength() const
Definition: Vector3.h:202
float getZ() const
Definition: Vector3.h:136
bool operator!=(const Vector3 &v) const
Non equality comparison operator.
Definition: Vector3.h:545
Vector3 & setZ(float z)
Set Z.
Definition: Vector3.h:145
Vector3 operator/(const float f) const
Operator / (f)
Definition: Vector3.h:460
Vector3 & scale(const Vector3 &scale)
Scale this vector.
Definition: Vector3.h:361
Vector3 operator+(const Vector3 &v) const
Operator +.
Definition: Vector3.h:420
bool equals(const Vector3 &v) const
Compares this vector with given vector.
Definition: Vector3.h:381
Vector3(const array< float, 3 > &v)
Public constructor.
Definition: Vector3.h:54
Vector3 & normalize()
Normalize the vector.
Definition: Vector3.h:288
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Vector3 & sub(float value)
Subtracts a float from each vector component.
Definition: Vector3.h:337
Vector3 & set(const array< float, 3 > &v)
Set up vector.
Definition: Vector3.h:85
Vector3 & abs()
Convert this vector to vector with positive vector components.
Definition: Vector3.h:277
bool operator==(const Vector3 &v) const
Equality comparison operator.
Definition: Vector3.h:536
Vector3 & setX(float x)
Set X.
Definition: Vector3.h:111
Vector3 & set(const Vector3 &v)
Set up vector.
Definition: Vector3.h:95
float computeLengthSquared() const
Definition: Vector3.h:209
bool computeEulerAngles(Vector3 &euler) const
Compute Euler angles (rotation around x, y, z axes)
Definition: Vector3.h:218
Vector3 clone() const
Clones the vector.
Definition: Vector3.h:372
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Definition: Vector3.h:325
static float computeDotProduct(const Vector3 &v1, const Vector3 &v2)
Compute the dot product of vector v1 and v2.
Definition: Vector3.h:195
Vector3 operator*(const float f) const
Operator * (float)
Definition: Vector3.h:440
bool equals(const Vector3 &v, float tolerance) const
Compares this vector with given vector.
Definition: Vector3.h:406
Vector3 & operator+=(const Vector3 &v)
Operator +=.
Definition: Vector3.h:481
Vector3 & add(const Vector3 &v)
Adds a vector.
Definition: Vector3.h:301
const float & operator[](int i) const
Const array access operator.
Definition: Vector3.h:164
Vector3 & operator-=(const Vector3 &v)
Operator -=.
Definition: Vector3.h:490
float & operator[](int i)
Array access operator.
Definition: Vector3.h:155
Vector3()
Public constructor.
Definition: Vector3.h:34
array< float, 3 > data
Definition: Vector3.h:28
static Vector3 computeCrossProduct(const Vector3 &v1, const Vector3 &v2)
Compute the cross product of vector v1 and v2.
Definition: Vector3.h:181
Vector3 & operator/=(const Vector3 &v)
Operator /=.
Definition: Vector3.h:508
Vector3 & scale(float scale)
Scale this vector.
Definition: Vector3.h:349
static float computeAngle(const Vector3 &a, const Vector3 &b, const Vector3 &n)
Computes angle between a and b.
Definition: Vector3.h:266
static float computeAngle(const Vector3 &a, const Vector3 &b)
Computes angle between a and b from 0..180.
Definition: Vector3.h:254
Vector3 & add(float value)
Adds a float to each vector component.
Definition: Vector3.h:313
Vector3 & setY(float y)
Set Y.
Definition: Vector3.h:128
array< float, 3 > & getArray() const
Definition: Vector3.h:171
3D vector 4 class
Definition: Vector4.h:19
Float class.
Definition: Float.h:23