*** src/gxclimag.c~ Mon Dec 21 17:47:03 1998 --- src/gxclimag.c Tue Dec 22 08:14:27 1998 *************** *** 283,288 **** image_matrix_ok_to_band(const gs_matrix * pmat) { - double t; - /* Don't band if the matrix is (nearly) singular. */ if (fabs(pmat->xx * pmat->yy - pmat->xy * pmat->yx) < 0.001) --- 283,286 ---- *************** *** 290,296 **** if (is_xxyy(pmat) || is_xyyx(pmat)) return true; ! t = (fabs(pmat->xx) + fabs(pmat->yy)) / ! (fabs(pmat->xy) + fabs(pmat->yx)); ! return (t < 0.2 || t > 5); } --- 290,294 ---- if (is_xxyy(pmat) || is_xyyx(pmat)) return true; ! return false; }