cleanup
This commit is contained in:
@@ -44,10 +44,6 @@ public:
|
|||||||
|
|
||||||
friend RageVector2 operator * ( float f, const RageVector2& other ) { return other*f; }
|
friend RageVector2 operator * ( float f, const RageVector2& other ) { return other*f; }
|
||||||
|
|
||||||
/* unneeded; this is a POD type */
|
|
||||||
// bool operator == ( const RageVector2& other ) const { return x==other.x && y==other.y; }
|
|
||||||
// bool operator != ( const RageVector2& other ) const { return x!=other.x || y!=other.y; }
|
|
||||||
|
|
||||||
float x, y;
|
float x, y;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -77,13 +73,10 @@ public:
|
|||||||
|
|
||||||
friend RageVector3 operator * ( float f, const RageVector3& other ) { return other*f; }
|
friend RageVector3 operator * ( float f, const RageVector3& other ) { return other*f; }
|
||||||
|
|
||||||
/* unneeded; this is a POD type */
|
float x, y, z;
|
||||||
// bool operator == ( const RageVector3& other ) const { return x==other.x && y==other.y && z==other.z; }
|
|
||||||
// bool operator != ( const RageVector3& other ) const { return x!=other.x || y!=other.y || z!=other.z; }
|
|
||||||
|
|
||||||
float x, y, z;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
struct RageVector4
|
struct RageVector4
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|||||||
Reference in New Issue
Block a user