| 88 | */ |
| 89 | template <class Iter, class Func> |
| 90 | void insert_edges (Iter from, Iter to, Func f) |
| 91 | { |
| 92 | for (Iter e = from; e != to; ++e) { |
| 93 | insert (f (*e)); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * @brief Insert a box with a transformation (because it may not be orthogonal) |