6f32 Vector2f::normalise() {
9 *
this = *
this * (1.0f / len);
17 x = stream.read_f32();
18 y = stream.read_f32();
31 return xy + z * rhs.z;
49 *
this *= (1.0f / len);
56void Vector3f::normalise2() {
58 if (sqLen > std::numeric_limits<f32>::epsilon()) {
68 out.x = x > rhs.x ? x : rhs.x;
69 out.y = y > rhs.y ? y : rhs.y;
70 out.z = z > rhs.z ? z : rhs.z;
80 out.x = x < rhs.x ? x : rhs.x;
81 out.y = y < rhs.y ? y : rhs.y;
82 out.z = z < rhs.z ? z : rhs.z;
97 if (Mathf::abs(
dot(rhs)) == 1.0f) {
98 return EGG::Vector3f::zero;
101 f32 _x = (rhs.z * x - rhs.x * z) * rhs.z - (rhs.x * y - rhs.y * x) * rhs.y;
102 f32 _y = (rhs.x * y - rhs.y * x) * rhs.x - (rhs.y * z - rhs.z * y) * rhs.z;
103 f32 _z = (rhs.y * z - rhs.z * y) * rhs.y - (rhs.z * x - rhs.x * z) * rhs.x;
116 x = stream.read_f32();
117 y = stream.read_f32();
118 z = stream.read_f32();
131const Vector3f Vector3f::inf =
Vector3f(std::numeric_limits<f32>::infinity(),
132 std::numeric_limits<f32>::infinity(), std::numeric_limits<f32>::infinity());
A stream of data, abstracted to allow for continuous seeking.
static f32 fma(f32 x, f32 y, f32 z)
Fused multiply-add operation.
void read(Stream &stream)
Initializes a Vector2f by reading 8 bytes from the stream.
f32 normalise()
Normalizes the vector and returns the original length.
f32 dot(const Vector3f &rhs) const
The dot product between two vectors.
f32 length() const
The square root of the vector's dot product.
f32 squaredLength() const
The dot product between the vector and itself.
f32 ps_squareMag() const
Differs from ps_dot due to variation in which operands are fused.
void read(Stream &stream)
Initializes a Vector3f by reading 12 bytes from the stream.
Vector3f perpInPlane(const EGG::Vector3f &rhs, bool normalise) const
Calculates the orthogonal vector, based on the plane defined by this vector and rhs.
Vector3f maximize(const Vector3f &rhs) const
Returns a vector whose elements are the max of the elements of both vectors.
f32 ps_sqDistance(const Vector3f &rhs) const
Paired-singles impl. of sqDistance.
f32 ps_dot() const
Paired-singles dot product implementation.
Vector3f minimize(const Vector3f &rhs) const
Returns a vector whose elements are the min of the elements of both vectors.