| 295 | |
| 296 | #ifndef GRAPHICS_DISABLED |
| 297 | void WERD::plot(ScrollView *window, ScrollView::Color colour) { |
| 298 | C_BLOB_IT it = &cblobs; |
| 299 | for (it.mark_cycle_pt(); !it.cycled_list(); it.forward()) { |
| 300 | it.data()->plot(window, colour, colour); |
| 301 | } |
| 302 | plot_rej_blobs(window); |
| 303 | } |
| 304 | |
| 305 | // Get the next color in the (looping) rainbow. |
| 306 | ScrollView::Color WERD::NextColor(ScrollView::Color colour) { |
no test coverage detected