47                return (this->x == vector.x) && (this->y == vector.y);
 
   50                return (this->x != vector.x) || (this->y != vector.y);
 
   58                return "(" + std::to_string((
int)x) + 
", " + std::to_string((
int)y) + 
")";
 
 
 
std::string toString() const
Converts the vector to a floored string for printing purposes.
Definition Vector2.hpp:57