Vec3: Simplify operator== code

This commit is contained in:
Lioncash 2015-08-28 14:12:14 -04:00
parent bb27f80a65
commit e787501528

View File

@ -150,10 +150,7 @@ public:
bool operator==(const Vec3 &other) const
{
if (x == other.x && y == other.y && z == other.z)
return true;
else
return false;
return x == other.x && y == other.y && z == other.z;
}
void SetZero()