From 5cac8f0a910e39933ff3b6793aa5ff5e7904c047 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 20 Dec 2003 03:06:30 +0000 Subject: [PATCH] cleanup --- stepmania/src/RageTypes.h | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/stepmania/src/RageTypes.h b/stepmania/src/RageTypes.h index c8d9b729a3..853b75d034 100644 --- a/stepmania/src/RageTypes.h +++ b/stepmania/src/RageTypes.h @@ -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: