| 173 | |
| 174 | template <typename rect_type> |
| 175 | rect_type rect_down ( |
| 176 | const rect_type& rect |
| 177 | ) const |
| 178 | { |
| 179 | return rect_type(point_down(rect.tl_corner()), point_down(rect.br_corner())); |
| 180 | } |
| 181 | |
| 182 | template <typename rect_type> |
| 183 | rect_type rect_down2 ( |
no test coverage detected