| 199 | } |
| 200 | |
| 201 | inline Vector2D operator +(const Vector2D& a, const Vector2D& b) |
| 202 | { |
| 203 | return (Vector2D(a.x + b.x, a.y + b.y)); |
| 204 | } |
| 205 | |
| 206 | template <typename type_struct, int count, int index_x, int index_y> |
| 207 | inline Vector2D operator +(const Vector2D& a, const Subvec2D<type_struct, count, index_x, index_y>& b) |