This commit is contained in:
Glenn Maynard
2003-12-20 03:06:30 +00:00
parent 799072e8b0
commit 5cac8f0a91
+2 -9
View File
@@ -43,10 +43,6 @@ public:
RageVector2 operator / ( float f ) const { return RageVector2( x/f, y/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;
};
@@ -77,13 +73,10 @@ public:
friend RageVector3 operator * ( float f, const RageVector3& other ) { return other*f; }
/* unneeded; this is a POD type */
// 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;
float x, y, z;
};
struct RageVector4
{
public: