(x, y)
| 76 | |
| 77 | |
| 78 | def atan2p(x, y): |
| 79 | |
| 80 | rv = atan2(y, x) |
| 81 | |
| 82 | if rv < 0: |
| 83 | rv = (2 * pi + rv) % (2 * pi) |
| 84 | |
| 85 | return rv |
| 86 | |
| 87 | |
| 88 | def convert_and_validate(edges: Iterable[Edge]) -> Tuple[List[Arc], List[Point]]: |
no outgoing calls
no test coverage detected