(self, x, y, z)
| 51 | _rayon2 = _rayon*_rayon |
| 52 | |
| 53 | def test(self, x, y, z): |
| 54 | d2 = (x - self._center[0])**2 + (y - self._center[1])**2 |
| 55 | if d2 > self._rayon2: |
| 56 | return -1 |
| 57 | return 1 |
| 58 | |
| 59 | def value(self, geoCursor): |
| 60 | bounds = range(6) |
no outgoing calls
no test coverage detected