#include <Vector.hh>
Public Member Functions | |
constexpr | Vector2f (f32 x_, f32 y_) |
void | set (f32 val) |
Vector2f | operator- () const |
Vector2f | operator- (const Vector2f &rhs) const |
Vector2f | operator+ (const Vector2f &rhs) const |
Vector2f & | operator+= (const Vector2f &rhs) |
Vector2f | operator* (const f32 scalar) const |
Vector2f & | operator*= (const f32 scalar) |
f32 | cross (const Vector2f &rhs) const |
f32 | dot (const Vector2f &rhs) const |
f32 | dot () const |
f32 | length () const |
f32 | normalise () |
void | read (Stream &stream) |
Initializes a Vector2f by reading 8 bytes from the stream. | |
Public Attributes | |
f32 | x |
f32 | y |
Static Public Attributes | |
static const Vector2f | zero = Vector2f(0.0f, 0.0f) |
static const Vector2f | ex = Vector2f(1.0f, 0.0f) |
static const Vector2f | ey = Vector2f(0.0f, 1.0f) |
|
inlinenodiscard |
|
inlinenodiscard |
|
inlinenodiscard |
|
inline |
|
inlinenodiscard |
void EGG::Vector2f::read | ( | Stream & | stream | ) |