( m1, m2)
| 24119 | |
| 24120 | |
| 24121 | def util_concat_matrix( m1, m2): |
| 24122 | return JM_py_from_matrix( |
| 24123 | mupdf.fz_concat( |
| 24124 | JM_matrix_from_py(m1), |
| 24125 | JM_matrix_from_py(m2), |
| 24126 | ) |
| 24127 | ) |
| 24128 | |
| 24129 | |
| 24130 | def util_invert_matrix(matrix): |
no test coverage detected
searching dependent graphs…