#include <Vector3.h>
Public Member Functions | |
Vector3 () | |
Vector3 (float x, float y, float z) | |
Vector3 (const float *array) | |
Vector3 (const Vector3 &p1, const Vector3 &p2) | |
Vector3 (const Vector3 ©) | |
~Vector3 () | |
bool | isZero () const |
bool | isOne () const |
void | add (const Vector3 &v) |
void | clamp (const Vector3 &min, const Vector3 &max) |
void | cross (const Vector3 &v) |
float | distance (const Vector3 &v) const |
float | distanceSquared (const Vector3 &v) const |
float | dot (const Vector3 &v) const |
float | length () const |
float | lengthSquared () const |
void | negate () |
Vector3 & | normalize () |
void | normalize (Vector3 *dst) const |
void | scale (float scalar) |
void | set (float x, float y, float z) |
void | set (const float *array) |
void | set (const Vector3 &v) |
void | set (const Vector3 &p1, const Vector3 &p2) |
void | subtract (const Vector3 &v) |
void | smooth (const Vector3 &target, float elapsedTime, float responseTime) |
const Vector3 | operator+ (const Vector3 &v) const |
Vector3 & | operator+= (const Vector3 &v) |
const Vector3 | operator- (const Vector3 &v) const |
Vector3 & | operator-= (const Vector3 &v) |
const Vector3 | operator- () const |
const Vector3 | operator* (float x) const |
Vector3 & | operator*= (float x) |
const Vector3 | operator/ (float x) const |
bool | operator< (const Vector3 &v) const |
bool | operator== (const Vector3 &v) const |
bool | operator!= (const Vector3 &v) const |
Static Public Member Functions | |
static Vector3 | fromColor (unsigned int color) |
static const Vector3 & | zero () |
static const Vector3 & | one () |
static const Vector3 & | unitX () |
static const Vector3 & | unitY () |
static const Vector3 & | unitZ () |
static float | angle (const Vector3 &v1, const Vector3 &v2) |
static void | add (const Vector3 &v1, const Vector3 &v2, Vector3 *dst) |
static void | clamp (const Vector3 &v, const Vector3 &min, const Vector3 &max, Vector3 *dst) |
static void | cross (const Vector3 &v1, const Vector3 &v2, Vector3 *dst) |
static float | dot (const Vector3 &v1, const Vector3 &v2) |
static void | subtract (const Vector3 &v1, const Vector3 &v2, Vector3 *dst) |
Public Attributes | |
float | x |
float | y |
float | z |
Defines a 3-element floating point vector.
When using a vector to represent a surface normal, the vector should typically be normalized. Other uses of directional vectors may wish to leave the magnitude of the vector intact. When used as a point, the elements of the vector represent a position in 3D space.
Constructs a new vector initialized to all zeros.
gameplay::Vector3::Vector3 | ( | float | x, |
float | y, | ||
float | z | ||
) |
Constructs a new vector initialized to the specified values.
x | The x coordinate. |
y | The y coordinate. |
z | The z coordinate. |
gameplay::Vector3::Vector3 | ( | const float * | array | ) |
Constructs a new vector from the values in the specified array.
array | An array containing the elements of the vector in the order x, y, z. |
gameplay::Vector3::Vector3 | ( | const Vector3 & | p1, |
const Vector3 & | p2 | ||
) |
Constructs a vector that describes the direction between the specified points.
p1 | The first point. |
p2 | The second point. |
gameplay::Vector3::Vector3 | ( | const Vector3 & | copy | ) |
Constructs a new vector that is a copy of the specified vector.
copy | The vector to copy. |
Destructor.
void gameplay::Vector3::add | ( | const Vector3 & | v | ) |
Adds the elements of the specified vector to this one.
v | The vector to add. |
static void gameplay::Vector3::add | ( | const Vector3 & | v1, |
const Vector3 & | v2, | ||
Vector3 * | dst | ||
) | [static] |
Adds the specified vectors and stores the result in dst.
v1 | The first vector. |
v2 | The second vector. |
dst | A vector to store the result in. |
static float gameplay::Vector3::angle | ( | const Vector3 & | v1, |
const Vector3 & | v2 | ||
) | [static] |
Returns the angle (in radians) between the specified vectors.
v1 | The first vector. |
v2 | The second vector. |
void gameplay::Vector3::clamp | ( | const Vector3 & | min, |
const Vector3 & | max | ||
) |
Clamps this vector within the specified range.
min | The minimum value. |
max | The maximum value. |
static void gameplay::Vector3::clamp | ( | const Vector3 & | v, |
const Vector3 & | min, | ||
const Vector3 & | max, | ||
Vector3 * | dst | ||
) | [static] |
Clamps the specified vector within the specified range and returns it in dst.
v | The vector to clamp. |
min | The minimum value. |
max | The maximum value. |
dst | A vector to store the result in. |
void gameplay::Vector3::cross | ( | const Vector3 & | v | ) |
Sets this vector to the cross product between itself and the specified vector.
v | The vector to compute the cross product with. |
static void gameplay::Vector3::cross | ( | const Vector3 & | v1, |
const Vector3 & | v2, | ||
Vector3 * | dst | ||
) | [static] |
Computes the cross product of the specified vectors and stores the result in dst.
v1 | The first vector. |
v2 | The second vector. |
dst | A vector to store the result in. |
float gameplay::Vector3::distance | ( | const Vector3 & | v | ) | const |
Returns the distance between this vector and v.
v | The other vector. |
float gameplay::Vector3::distanceSquared | ( | const Vector3 & | v | ) | const |
Returns the squared distance between this vector and v.
When it is not necessary to get the exact distance between two vectors (for example, when simply comparing the distance between different vectors), it is advised to use this method instead of distance.
v | The other vector. |
float gameplay::Vector3::dot | ( | const Vector3 & | v | ) | const |
Returns the dot product of this vector and the specified vector.
v | The vector to compute the dot product with. |
static float gameplay::Vector3::dot | ( | const Vector3 & | v1, |
const Vector3 & | v2 | ||
) | [static] |
Returns the dot product between the specified vectors.
v1 | The first vector. |
v2 | The second vector. |
static Vector3 gameplay::Vector3::fromColor | ( | unsigned int | color | ) | [static] |
Creates a new vector from an integer interpreted as an RGB value. E.g. 0xff0000 represents red or the vector (1, 0, 0).
color | The integer to interpret as an RGB value. |
bool gameplay::Vector3::isOne | ( | ) | const |
Indicates whether this vector contains all ones.
bool gameplay::Vector3::isZero | ( | ) | const |
Indicates whether this vector contains all zeros.
float gameplay::Vector3::length | ( | ) | const |
float gameplay::Vector3::lengthSquared | ( | ) | const |
Returns the squared length of this vector.
When it is not necessary to get the exact length of a vector (for example, when simply comparing the lengths of different vectors), it is advised to use this method instead of length.
void gameplay::Vector3::negate | ( | ) |
Negates this vector.
Normalizes this vector.
This method normalizes this Vector3 so that it is of unit length (in other words, the length of the vector after calling this method will be 1.0f). If the vector already has unit length or if the length of the vector is zero, this method does nothing.
void gameplay::Vector3::normalize | ( | Vector3 * | dst | ) | const |
Normalizes this vector and stores the result in dst.
If the vector already has unit length or if the length of the vector is zero, this method simply copies the current vector into dst.
dst | The destination vector. |
static const Vector3& gameplay::Vector3::one | ( | ) | [static] |
Returns the one vector.
bool gameplay::Vector3::operator!= | ( | const Vector3 & | v | ) | const [inline] |
Determines if this vector is not equal to the given vector.
v | The vector to compare against. |
const Vector3 gameplay::Vector3::operator* | ( | float | x | ) | const [inline] |
Calculates the scalar product of this vector with the given value.
Note: this does not modify this vector.
x | The value to scale by. |
Vector3& gameplay::Vector3::operator*= | ( | float | x | ) | [inline] |
Scales this vector by the given value.
x | The value to scale by. |
Calculates the sum of this vector with the given vector.
Note: this does not modify this vector.
v | The vector to add. |
Adds the given vector to this vector.
v | The vector to add. |
Calculates the difference of this vector with the given vector.
Note: this does not modify this vector.
v | The vector to subtract. |
const Vector3 gameplay::Vector3::operator- | ( | ) | const [inline] |
Calculates the negation of this vector.
Note: this does not modify this vector.
Subtracts the given vector from this vector.
v | The vector to subtract. |
const Vector3 gameplay::Vector3::operator/ | ( | float | x | ) | const [inline] |
Returns the components of this vector divided by the given constant
Note: this does not modify this vector.
x | the constant to divide this vector with |
bool gameplay::Vector3::operator< | ( | const Vector3 & | v | ) | const [inline] |
Determines if this vector is less than the given vector.
v | The vector to compare against. |
bool gameplay::Vector3::operator== | ( | const Vector3 & | v | ) | const [inline] |
Determines if this vector is equal to the given vector.
v | The vector to compare against. |
void gameplay::Vector3::scale | ( | float | scalar | ) |
Scales all elements of this vector by the specified value.
scalar | The scalar value. |
void gameplay::Vector3::set | ( | float | x, |
float | y, | ||
float | z | ||
) |
Sets the elements of this vector to the specified values.
x | The new x coordinate. |
y | The new y coordinate. |
z | The new z coordinate. |
void gameplay::Vector3::set | ( | const float * | array | ) |
Sets the elements of this vector from the values in the specified array.
array | An array containing the elements of the vector in the order x, y, z. |
void gameplay::Vector3::set | ( | const Vector3 & | v | ) |
Sets the elements of this vector to those in the specified vector.
v | The vector to copy. |
void gameplay::Vector3::set | ( | const Vector3 & | p1, |
const Vector3 & | p2 | ||
) |
Sets this vector to the directional vector between the specified points.
void gameplay::Vector3::smooth | ( | const Vector3 & | target, |
float | elapsedTime, | ||
float | responseTime | ||
) |
Updates this vector towards the given target using a smoothing function. The given response time determines the amount of smoothing (lag). A longer response time yields a smoother result and more lag. To force this vector to follow the target closely, provide a response time that is very small relative to the given elapsed time.
target | target value. |
elapsedTime | elapsed time between calls. |
responseTime | response time (in the same units as elapsedTime). |
void gameplay::Vector3::subtract | ( | const Vector3 & | v | ) |
Subtracts this vector and the specified vector as (this - v) and stores the result in this vector.
v | The vector to subtract. |
static void gameplay::Vector3::subtract | ( | const Vector3 & | v1, |
const Vector3 & | v2, | ||
Vector3 * | dst | ||
) | [static] |
Subtracts the specified vectors and stores the result in dst. The resulting vector is computed as (v1 - v2).
v1 | The first vector. |
v2 | The second vector. |
dst | The destination vector. |
static const Vector3& gameplay::Vector3::unitX | ( | ) | [static] |
Returns the unit x vector.
static const Vector3& gameplay::Vector3::unitY | ( | ) | [static] |
Returns the unit y vector.
static const Vector3& gameplay::Vector3::unitZ | ( | ) | [static] |
Returns the unit z vector.
static const Vector3& gameplay::Vector3::zero | ( | ) | [static] |
Returns the zero vector.
float gameplay::Vector3::x |
The x-coordinate.
float gameplay::Vector3::y |
The y-coordinate.
float gameplay::Vector3::z |
The z-coordinate.