| 154 | } |
| 155 | |
| 156 | void backend_interface::show(class matplot::figure_type *f) { |
| 157 | // The default implementation waits for the user to interact with the |
| 158 | // console. In interactive backends we expect this to start a render |
| 159 | // loop that will stop only when the user closes the window. |
| 160 | f->draw(); |
| 161 | matplot::wait(); |
| 162 | } |
| 163 | |
| 164 | bool backend_interface::supports_fonts() { return false; } |
| 165 |