This commit is contained in:
Glenn Maynard
2003-12-20 03:06:30 +00:00
parent 799072e8b0
commit 5cac8f0a91
+2 -9
View File
@@ -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: