44 inline Vector3(
float x,
float y,
float z) {
172 return (array<float,3>&)
data;
226 auto b =
Vector3(0.0f, 1.0f, 0.0f);
227 auto n =
Vector3(1.0f, 0.0f, 0.0f);
233 auto b =
Vector3(0.0f, 0.0f, -1.0f);
234 auto n =
Vector3(0.0f, 1.0f, 0.0f);
240 auto b =
Vector3(0.0f, 1.0f, 0.0f);
241 auto n =
Vector3(0.0f, 0.0f, 1.0f);
269 if (Float::isNaN(sign) ==
true) sign = 1.0f;
270 return std::fmod(((angle * sign) + 360.0f), 360.0f);
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])
407 return (
this == &v) ||
471 auto vInverted =
Vector3(1.0f / v[0], 1.0f / v[1], 1.0f / v[2]);
500 return this->
scale(v);
509 auto vInverted =
Vector3(1.0f / v[0], 1.0f / v[1], 1.0f / v[2]);
510 return this->
scale(vInverted);
519 return this->
scale(f);
528 return this->
scale(1.0f / f);
546 return this->
equals(v) ==
false;
static float sqrt(float value)
Returns the square of given value.
static int clamp(int value, int min, int max)
Clamps a int value to min or max value.
static float acos(float value)
Returns the arc cosine of a value.
static constexpr float EPSILON
static float sign(float value)
Returns sign of value.
static int32_t abs(int32_t value)
Returns absolute value.
static constexpr float PI
Vector3(const Vector3 &v)
Public constructor.
Vector3 operator-(const Vector3 &v) const
Operator +.
static Vector3 interpolateLinear(const Vector3 &v1, const Vector3 &v2, float t)
Interpolates between vector 1 and vector2 by 0f<=t<=1f linearly.
Vector3 & operator*=(const Vector3 &v)
Operator *=.
Vector3(float x, float y, float z)
Public constructor.
float computeLength() const
bool operator!=(const Vector3 &v) const
Non equality comparison operator.
Vector3 & setZ(float z)
Set Z.
Vector3 operator/(const float f) const
Operator / (f)
Vector3 & scale(const Vector3 &scale)
Scale this vector.
Vector3 operator+(const Vector3 &v) const
Operator +.
bool equals(const Vector3 &v) const
Compares this vector with given vector.
Vector3(const array< float, 3 > &v)
Public constructor.
Vector3 & normalize()
Normalize the vector.
Vector3 & set(float x, float y, float z)
Set up vector.
Vector3 & sub(float value)
Subtracts a float from each vector component.
Vector3 & set(const array< float, 3 > &v)
Set up vector.
Vector3 & abs()
Convert this vector to vector with positive vector components.
bool operator==(const Vector3 &v) const
Equality comparison operator.
Vector3 & setX(float x)
Set X.
Vector3 & set(const Vector3 &v)
Set up vector.
float computeLengthSquared() const
bool computeEulerAngles(Vector3 &euler) const
Compute Euler angles (rotation around x, y, z axes)
Vector3 clone() const
Clones the vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
static float computeDotProduct(const Vector3 &v1, const Vector3 &v2)
Compute the dot product of vector v1 and v2.
Vector3 operator*(const float f) const
Operator * (float)
bool equals(const Vector3 &v, float tolerance) const
Compares this vector with given vector.
Vector3 & operator+=(const Vector3 &v)
Operator +=.
Vector3 & add(const Vector3 &v)
Adds a vector.
const float & operator[](int i) const
Const array access operator.
Vector3 & operator-=(const Vector3 &v)
Operator -=.
float & operator[](int i)
Array access operator.
Vector3()
Public constructor.
static Vector3 computeCrossProduct(const Vector3 &v1, const Vector3 &v2)
Compute the cross product of vector v1 and v2.
Vector3 & operator/=(const Vector3 &v)
Operator /=.
Vector3 & scale(float scale)
Scale this vector.
static float computeAngle(const Vector3 &a, const Vector3 &b, const Vector3 &n)
Computes angle between a and b.
static float computeAngle(const Vector3 &a, const Vector3 &b)
Computes angle between a and b from 0..180.
Vector3 & add(float value)
Adds a float to each vector component.
Vector3 & setY(float y)
Set Y.
array< float, 3 > & getArray() const