47 inline Vector2(
const array<float, 2>& v) {
94 inline float getX()
const {
249 auto vInverted =
Vector2(1.0f / v[0], 1.0f / v[1]);
278 return this->
scale(v);
287 auto vInverted =
Vector2(1.0f / v[0], 1.0f / v[1]);
288 return this->
scale(vInverted);
297 return this->
scale(f);
306 return this->
scale(1.0f / f);
324 return this->
equals(v) ==
false;
331 return (array<float, 2>&)
data;
358 return (
this == &v) ||
static float sqrt(float value)
Returns the square of given value.
static constexpr float EPSILON
static int32_t abs(int32_t value)
Returns absolute value.
Vector2 & set(const Vector2 &v)
Set up vector.
Vector2 & operator+=(const Vector2 &v)
Operator +=.
bool equals(const Vector2 &v) const
Compares this vector with given vector.
Vector2 & set(float x, float y)
Set up vector.
float computeLength() const
Vector2 clone() const
Clones the vector.
Vector2 & scale(const float scale)
Scale this vector.
Vector2(const array< float, 2 > &v)
Public constructor.
Vector2 operator+(const Vector2 &v) const
Operator +.
Vector2 & scale(const Vector2 &scale)
Scale this vector.
Vector2()
Public constructor.
Vector2 & sub(const Vector2 &v)
Subtracts a vector.
Vector2 & setX(float x)
set X
Vector2 & operator-=(Vector2 &v)
Operator -=.
Vector2 & operator/=(Vector2 &v)
Operator /=.
Vector2 & set(const array< float, 2 > &v)
Set up vector.
array< float, 2 > & getArray() const
Vector2(const Vector2 &v)
Public constructor.
Vector2 operator/(const float f) const
Operator / (f)
Vector2 & add(const Vector2 &v)
Adds a vector.
const float & operator[](int i) const
Const array access operator.
float & operator[](int i)
Array access operator.
Vector2 operator-(const Vector2 &v) const
Operator -.
Vector2 operator*(const float f) const
Operator * (float)
bool equals(const Vector2 &v, float tolerance) const
Compares this vector with given vector.
Vector2 & setY(float y)
set Y
Vector2 & operator*=(Vector2 &v)
Operator *=.
bool operator!=(const Vector2 &v) const
Non equality comparison operator.
Vector2(float x, float y)
Public constructor.
bool operator==(const Vector2 &v) const
Equality comparison operator.