| 30 | } |
| 31 | |
| 32 | RealVector2D RealVector2D::operator+(RealVector2D const& other) const |
| 33 | { |
| 34 | return RealVector2D{x + other.x, y + other.y}; |
| 35 | } |
| 36 | |
| 37 | RealVector2D RealVector2D::operator-(RealVector2D const& other) const |
| 38 | { |
nothing calls this directly
no outgoing calls
no test coverage detected