| 59 | void Window::setColorMap(const ColorMap cmap) { _cmap = cmap; } |
| 60 | |
| 61 | void Window::image(const array& in, const char* const title) { |
| 62 | af_cell temp{_r, _c, title, _cmap}; |
| 63 | AF_THROW(af_draw_image(get(), in.get(), &temp)); |
| 64 | } |
| 65 | |
| 66 | void Window::plot(const array& in, const char* const title) { |
| 67 | af_cell temp{_r, _c, title, AF_COLORMAP_DEFAULT}; |
no test coverage detected