| 45 | } |
| 46 | |
| 47 | RealVector2D RealVector2D::operator*(float factor) const |
| 48 | { |
| 49 | return RealVector2D{x * factor, y * factor}; |
| 50 | } |
| 51 | |
| 52 | RealVector2D RealVector2D::operator/(float divisor) const |
| 53 | { |
nothing calls this directly
no outgoing calls
no test coverage detected