(dir, a, b)
| 23886 | |
| 23887 | |
| 23888 | def hdist(dir, a, b): |
| 23889 | dx = b.x - a.x |
| 23890 | dy = b.y - a.y |
| 23891 | return mupdf.fz_abs(dx * dir.x + dy * dir.y) |
| 23892 | |
| 23893 | |
| 23894 | def make_table(rect: rect_like =(0, 0, 1, 1), cols: int =1, rows: int =1) -> list: |
no outgoing calls
no test coverage detected
searching dependent graphs…