| 495 | } |
| 496 | |
| 497 | rectangle_iterator map_lines::get_iter() const |
| 498 | { |
| 499 | ASSERT(width() > 0); |
| 500 | ASSERT(height() > 0); |
| 501 | |
| 502 | coord_def tl(0, 0); |
| 503 | coord_def br(width() - 1, height() - 1); |
| 504 | return rectangle_iterator(tl, br); |
| 505 | } |
| 506 | |
| 507 | char map_lines::operator () (const coord_def &c) const |
| 508 | { |
no test coverage detected