| 194 | } |
| 195 | |
| 196 | void Window::setAxesLabelFormat(const char* const xformat, |
| 197 | const char* const yformat, |
| 198 | const char* const zformat) { |
| 199 | af_cell temp{_r, _c, NULL, AF_COLORMAP_DEFAULT}; |
| 200 | AF_THROW(af_set_axes_label_format(get(), xformat, yformat, zformat, &temp)); |
| 201 | } |
| 202 | |
| 203 | void Window::show() { |
| 204 | AF_THROW(af_show(get())); |
nothing calls this directly
no test coverage detected