(left, right)
| 57 | |
| 58 | print("Example 2") |
| 59 | def distance(left, right): |
| 60 | return ((left.x - right.x) ** 2 + (left.y - right.y) ** 2) ** 0.5 |
| 61 | |
| 62 | origin1 = Point("source", 0, 0) |
| 63 | point1 = Point("destination", 3, 4) |
no outgoing calls
no test coverage detected