Unigine.vec2 Struct
This class represents a vector of 2 float components.
vec2 Class
Members
vec2()
Default constructor. Produces a zero vector.vec2(const vec2 & v)
Constructor. Initializes the vector by copying a given source vector.Arguments
- const vec2 & v - Source vector.
vec2(float x, float y)
Constructor. Initializes the vector using given float values.Arguments
- float x - X component of the vector.
- float y - Y component of the vector.
Examples
vec2(2.0, 3.0);
/*
Creates a vector (2.0, 3.0)
*/
explicit vec2(float v)
Constructor. Initializes the vector using a given scalar value: x=v, y=v.Arguments
- float v - Scalar value.
Examples
vec2(1.0);
/*
Creates a vector (1.0, 1.0)
*/
explicit vec2(const vec3 & v)
Constructor. Initializes the vector using a given three-component vec3 source vector: x=v.x, y=v.y.Arguments
- const vec3 & v - Three-component source vector.
explicit vec2(const vec4 & v)
Constructor. Initializes the vector using a given four-component vec4 source vector: x=v.x, y=v.y.Arguments
- const vec4 & v - Four-component source vector.
explicit vec2(const dvec2 & v)
Constructor. Initializes the vector using a given dvec2 source vector.Arguments
- const dvec2 & v - Source vector.
explicit vec2(const ivec2 & v)
Constructor. Initializes the vector using a given ivec2 source vector.Arguments
- const ivec2 & v - Source vector.
explicit vec2(const float * v)
Constructor. Initializes the vector using a given pointer to the array of float elements: x=v[0], y=v[1].Arguments
- const float * v - Pointer to the array of float elements.
void set(float x_, float y_)
Sets the vector by components.Arguments
- float x_ - X component of the vector.
- float y_ - Y component of the vector.
void set(const float * val)
Sets the vector using the array of float elements: x=val[0], y=val[1].Arguments
- const float * val - Pointer to the array of float elements.
void get(float * val) const
Gets the vector: val[0]=x, val[1]=y.Arguments
- float * val - Pointer to the array of float elements.
float * get()
Returns the pointer to the vector.Return value
Pointer to the vector.const float * get() const
Returns the constant pointer to the vector.Return value
Pointer to the vector.vec2 & operator*=(float val)
Performs scalar multiplication.Arguments
- float val - Scalar value.
Return value
Resulting vector.vec2 & operator*=(const vec2 & val)
Performs vector multiplication.Arguments
- const vec2 & val - Vector.
Return value
Resulting vector.vec2 & operator+=(const vec2 & val)
Performs vector addition.Arguments
- const vec2 & val - Vector.
Return value
Resulting vector.vec2 operator-() const
Performs vector negation.Return value
Resulting vector.vec2 & operator-=(const vec2 & val)
Performs vector subtraction.Arguments
- const vec2 & val - Vector.
Return value
Resulting vector.float & operator[](int i)
Performs array access to the vector item reference by using given item index.Arguments
- int i - Vector item index.
Return value
Vector item reference.float operator[](int i) const
Performs array access to the vector item by using given item index.Arguments
- int i - Vector item index.
Return value
Vector item.vec2 EPS
Description
Vector, filled with epsilon constant (1e-6f).vec2 INF
Description
Vector, filled with infinity constant (1e+9f).vec2 ONE
Description
Vector, filled with ones (1).vec2 ZERO
Description
Vector, filled with zeros (0).Last update: 2018-08-10
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)