(dir, a, b)
| 24640 | |
| 24641 | |
| 24642 | def vdist(dir, a, b): |
| 24643 | dx = b.x - a.x |
| 24644 | dy = b.y - a.y |
| 24645 | return mupdf.fz_abs(dx * dir.y + dy * dir.x) |
| 24646 | |
| 24647 | |
| 24648 | def apply_pages( |
no outgoing calls
no test coverage detected
searching dependent graphs…