| 52 | /// @param b The point to subtract. |
| 53 | /// @return A new point whose axis values are subtractions of the two inputs' axis values. |
| 54 | friend inline constexpr point operator-(const point& a, const point& b) { |
| 55 | return point(a.x - b.x, a.y - b.y); |
| 56 | } |
| 57 | |
| 58 | /// Subtraction-assignment operator. |
| 59 | /// @param a The point to subtract from this point |