61 inline Vector4(
float x,
float y,
float z,
float w) {
72 inline Vector4(
const array<float, 4>& v) {
84 inline Vector4&
set(
float x,
float y,
float z,
float w) {
324 auto vInverted =
Vector4(1.0f / v[0], 1.0f / v[1], 1.0f / v[2], 1.0f / v[3]);
353 return this->
scale(v);
362 auto vInverted =
Vector4(1.0f / v[0], 1.0f / v[1], 1.0f / v[2], 1.0f / v[3]);
363 return this->
scale(vInverted);
372 return this->
scale(f);
381 return this->
scale(1.0f / f);
401 return this->
equals(v) ==
false;
408 return (array<float, 4>&)
data;
435 return (
this == &v) ||
static constexpr float EPSILON
static int32_t abs(int32_t value)
Returns absolute value.
Vector4 & operator*=(Vector4 &v)
Operator *=.
Vector4 & setZ(float z)
Set Z.
bool equals(const Vector4 &v) const
Compares this vector with given vector.
Vector4 operator/(const float f) const
Operator / (f)
array< float, 4 > & getArray() const
Vector4 clone() const
Clones the vector.
Vector4 & set(float x, float y, float z, float w)
Set up vector.
Vector4 & setY(float y)
set Y
Vector4 operator-(const Vector4 &v) const
Operator -.
Vector4 & setW(float w)
Set W.
Vector4 & operator-=(Vector4 &v)
Operator -=.
Vector4(const Vector4 &v)
Public constructor.
Vector4 & setX(float x)
set X
Vector4 & sub(const Vector4 &v)
Subtracts a vector.
Vector4 & set(const Vector3 &v, float w)
Set up vector.
Vector4()
Public constructor.
Vector4(float x, float y, float z, float w)
Public constructor.
bool equals(const Vector4 &v, float tolerance) const
Compares this vector with given vector.
Vector4 operator*(const float f) const
Operator * (float)
Vector4 & operator/=(Vector4 &v)
Operator /=.
Vector4 & set(const array< float, 4 > &v)
Set up vector.
bool operator==(const Vector4 &v) const
Equality comparison operator.
const float & operator[](int i) const
Const array access operator.
Vector4 & operator+=(const Vector4 &v)
Operator +=.
Vector4(const Vector3 &v, float w)
Public constructor.
float & operator[](int i)
Array access operator.
Vector4 & set(const Vector4 &v)
Set up vector.
bool operator!=(const Vector4 &v) const
Non equality comparison operator.
Vector4 operator+(const Vector4 &v) const
Operator +.
Vector4(const array< float, 4 > &v)
Public constructor.
Vector4 & add(const Vector4 &v)
Adds a vector.
Vector4 & scale(float scale)
Scale this vector.
Vector4 & scale(const Vector4 &scale)
Scale this vector.