#include <Vector.hh>
Public Member Functions | |
constexpr | Vector3f (f32 x_, f32 y_, f32 z_) |
void | setZero () |
void | set (f32 val) |
Vector3f | operator- () const |
Vector3f | operator- (const Vector3f &rhs) const |
Vector3f & | operator-= (const Vector3f &rhs) |
Vector3f | operator+ (const Vector3f &rhs) const |
Vector3f & | operator+= (const Vector3f &rhs) |
Vector3f | operator+ (f32 val) const |
Vector3f & | operator+= (f32 val) |
Vector3f | operator* (const Vector3f &rhs) const |
Vector3f | operator* (f32 scalar) const |
Vector3f & | operator*= (f32 scalar) |
Vector3f | operator/ (f32 scalar) const |
Vector3f & | operator/= (f32 scalar) |
bool | operator== (const Vector3f &rhs) const |
bool | operator!= (const Vector3f &rhs) const |
operator std::string () const | |
Allows for copy construction from a vector to a string. | |
Vector3f | cross (const Vector3f &rhs) const |
f32 | squaredLength () const |
The dot product between the vector and itself. | |
f32 | dot (const Vector3f &rhs) const |
The dot product between two vectors. | |
f32 | length () const |
The square root of the vector's dot product. | |
Vector3f | proj (const Vector3f &rhs) const |
The projection of this vector onto rhs. | |
Vector3f | rej (const Vector3f &rhs) const |
The rejection of this vector onto rhs. | |
std::pair< Vector3f, Vector3f > | projAndRej (const Vector3f &rhs) const |
Vector3f | abs () const |
Returns the absolute value of each element of the vector. | |
f32 | sqDistance (const Vector3f &rhs) const |
The square of the distance between two vectors. | |
EGG::Vector3f | multInv (f32 val) const |
Multiplies a vector by the inverse of val. | |
f32 | ps_dot () const |
Paired-singles dot product implementation. | |
f32 | ps_dot (const EGG::Vector3f &rhs) const |
Paired-singles dot product implementation. | |
f32 | ps_squareMag () const |
Differs from ps_dot due to variation in which operands are fused. | |
f32 | normalise () |
Normalizes the vector and returns the original length. | |
void | normalise2 () |
Vector3f | maximize (const Vector3f &rhs) const |
Returns a vector whose elements are the max of the elements of both vectors. | |
Vector3f | minimize (const Vector3f &rhs) const |
Returns a vector whose elements are the min of the elements of both vectors. | |
f32 | ps_sqDistance (const Vector3f &rhs) const |
Paired-singles impl. of sqDistance. | |
Vector3f | perpInPlane (const EGG::Vector3f &rhs, bool normalise) const |
Calculates the orthogonal vector, based on the plane defined by this vector and rhs. | |
void | read (Stream &stream) |
Initializes a Vector3f by reading 12 bytes from the stream. | |
Public Attributes | |
f32 | x |
f32 | y |
f32 | z |
Static Public Attributes | |
static const Vector3f | zero = Vector3f(0.0f, 0.0f, 0.0f) |
static const Vector3f | ex = Vector3f(1.0f, 0.0f, 0.0f) |
static const Vector3f | ey = Vector3f(0.0f, 1.0f, 0.0f) |
static const Vector3f | ez = Vector3f(0.0f, 0.0f, 1.0f) |
static const Vector3f | inf |
|
inlineconstexpr |
|
inlinenodiscard |
|
inlinenodiscard |
|
inlinenodiscard |
|
inlinenodiscard0x806A62A4 |
|
0x80243ADC |
|
inlineexplicit |
|
inline |
|
inlinenodiscard |
|
inlinenodiscard |
|
inlinenodiscard |
|
inlinenodiscard |
|
inline |
|
nodiscard0x805AE9EC |
|
nodiscard |
|
nodiscard0x8019ACAC |
|
nodiscard0x8019ADE0 |
Paired-singles impl. of sqDistance.
|
nodiscard |
void EGG::Vector3f::read | ( | Stream & | stream | ) |
|
inlinenodiscard |
|
inlinenodiscard |
|
static0x809C3C04 |