| 10 | |
| 11 | Point operator+(Point lhs, Point rhs) { return {lhs.x + rhs.x, lhs.y + rhs.y}; } |
| 12 | Point operator*(double k, Point pt) { return {k * pt.x, k * pt.y}; } |
| 13 | Point operator*(Point pt, double k) { return k * pt; } |
| 14 | |
| 15 | using PointVector = std::vector<Point>; |
nothing calls this directly
no outgoing calls
no test coverage detected