| 48 | struct Point |
| 49 | { |
| 50 | Point(double x, double y) : x(x), y(y) { } |
| 51 | Point(const Point& other) : x(other.x), y(other.y) { } |
| 52 | |
| 53 | // Calculates the distance-squared to another point. |
nothing calls this directly
no outgoing calls
no test coverage detected