pub unsafe extern "C" fn fz_invert_matrix(
    matrix: fz_matrix
) -> fz_matrix
Expand description

Create an inverse matrix.

inverse: Place to store inverse matrix.

matrix: Matrix to invert. A degenerate matrix, where the determinant is equal to zero, can not be inverted and the original matrix is returned instead.

Returns inverse.