(self, x,y,r)
| 34 | |
| 35 | class Ball: |
| 36 | def __init__(self, x,y,r): |
| 37 | self.x = x |
| 38 | self.y = y |
| 39 | self.r = r |
| 40 | def collides_with(self, other): |
| 41 | dx = self.x - other.x |
| 42 | dy = self.y - other.y |
nothing calls this directly
no outgoing calls
no test coverage detected