#ifndef VECTOR2_HPP_ #define VECTOR2_HPP_ #include #include template struct vector2 { static_assert(std::is_arithmetic::value, "vector2 members must be an arithmetic type (i.e. numbers)"); T x, y; vector2(T _x = 0, T _y = 0) : x(_x), y(_y) {} // format: "3, 5" vector2(const std::string& s) { *this = s; } vector2& operator=(const T& value) { x = y = value; return *this; } vector2& operator=(const std::string& s) { if (s.empty()) { x = y = 0; } else { auto comma = s.find(','); x = std::stoi(s.substr(0, comma)); y = std::stoi(s.substr(comma + 1)); } return *this; } // addition vector2 operator+(const vector2& v) const { return vector2(x + v.x, y + v.y); } template vector2 operator+(const vector2& v) const { return vector2(x + v.x, y + v.y); } vector2 operator+(const T& n) const { return vector2(x + n, y + n); } vector2 operator+=(const vector2& v) { x += v.x, y += v.y; return *this; } // subtraction vector2 operator-(const vector2& v) const { return vector2(x - v.x, y - v.y); } vector2 operator-(const T& n) const { return vector2(x - n, y - n); } vector2 operator-=(const vector2& v) { x -= v.x, y -= v.y; return *this; } // multiplication vector2 operator*(const vector2& v) const { return vector2(x * v.x, y * v.y); } vector2 operator*(const T& n) const { return vector2(x * n, y * n); } vector2 operator*=(const vector2& v) { x *= v.x, y *= v.y; return *this; } vector2 operator*=(const T& n) { x *= n, y *= n; return *this; } // division vector2 operator/(const vector2& v) const { return vector2(x / v.x, y / v.y); } vector2 operator/(const T& n) const { return vector2(x / n, y / n); } vector2 operator/=(const vector2& v) { x /= v.x, y /= v.y; return *this; } vector2 operator/=(const T& n) { x /= n, y /= n; return *this; } // compare bool operator==(const vector2& v) const { return (x == v.x) && (y == v.y); } bool operator>(const vector2& v) const { return (x > v.x) && (y > v.y); } bool operator<(const vector2& v) const { return (x < v.x) && (y < v.y); } bool operator<=(const T& n) const { return (x <= n) && (y <= n); } // other functions std::string toString(void) const { return "(" + std::to_string(x) + ", " + std::to_string(y) + ")"; } }; using vec2 = vector2; using dim2 = vector2; #endif // VECTOR2_HPP_