15 #include "CeeCore/Base.h"
29 Vec2f(
float x,
float y);
36 const Vec2f operator*(
float scalar)
const;
37 const Vec2f operator/(
float scalar)
const;
40 Vec2f& operator*=(
float scalar);
41 Vec2f& operator/=(
float scalar);
43 static float dot(
const Vec2f& v1,
const Vec2f& v2);
44 float operator*(
const Vec2f& rhs)
const;
46 const float& x()
const;
47 const float& y()
const;
50 void set(
float x,
float y);
cee::Str operator+(const char *str1, const cee::Str &str2)
Global operator to allow a const char + a cee::Str.
Definition: Str.cpp:817
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppAssert.cpp:18
bool operator!=(const PtrRef< T1 > &a, const PtrRef< T2 > &b)
Returns true if the internal pointers of refs a and b are different.
Definition: PtrRef.h:58
bool operator==(const PtrRef< T1 > &a, const PtrRef< T2 > &b)
Returns true if the internal pointers of refs a and b are equal.
Definition: PtrRef.h:57
Vector class for a 2D float vector.
Definition: Vec2f.h:24