(a: float, b: float, tol: float = 1e-12)
| 1243 | |
| 1244 | |
| 1245 | def assert_close_enough(a: float, b: float, tol: float = 1e-12) -> None: |
| 1246 | assert close_enough(a, b, tol), f'|{a}-{b}| = {abs(a-b)} >= {tol}' |
| 1247 | |
| 1248 | |
| 1249 | def ang_of(tail: Point, head: Point) -> float: |
nothing calls this directly
no test coverage detected