| 1080 | **********************************************************************/ |
| 1081 | |
| 1082 | void plot_blob_list(ScrollView* win, // window to draw in |
| 1083 | BLOBNBOX_LIST *list, // blob list |
| 1084 | ScrollView::Color body_colour, // colour to draw |
| 1085 | ScrollView::Color child_colour) { // colour of child |
| 1086 | BLOBNBOX_IT it = list; |
| 1087 | for (it.mark_cycle_pt(); !it.cycled_list(); it.forward()) { |
| 1088 | it.data()->plot(win, body_colour, child_colour); |
| 1089 | } |
| 1090 | } |
| 1091 | #endif // GRAPHICS_DISABLED |
no test coverage detected