| 34 | // ------------------------------------------------------------- |
| 35 | |
| 36 | static inline db::Box safe_transformed_box (const db::Box &box, const db::ICplxTrans &t) |
| 37 | { |
| 38 | db::DBox db = db::CplxTrans (t) * box; |
| 39 | db &= db::DBox (db::Box::world ()); |
| 40 | return db::Box (db); |
| 41 | } |
| 42 | |
| 43 | static bool |
| 44 | has_zero_bit (const lay::Bitmap *bitmap, unsigned int ixmin, unsigned int iymin, unsigned int ixmax, unsigned int iymax) |
no test coverage detected