( p, r)
| 24080 | |
| 24081 | |
| 24082 | def util_is_point_in_rect( p, r): |
| 24083 | return mupdf.fz_is_point_inside_rect( |
| 24084 | JM_point_from_py(p), |
| 24085 | JM_rect_from_py(r), |
| 24086 | ) |
| 24087 | |
| 24088 | def util_include_point_in_rect( r, p): |
| 24089 | return JM_py_from_rect( |
no test coverage detected
searching dependent graphs…