| 35 | } |
| 36 | |
| 37 | RealVector2D RealVector2D::operator-(RealVector2D const& other) const |
| 38 | { |
| 39 | return RealVector2D{x - other.x, y - other.y}; |
| 40 | } |
| 41 | |
| 42 | RealVector2D RealVector2D::operator-() const |
| 43 | { |
nothing calls this directly
no outgoing calls
no test coverage detected