| 160 | } |
| 161 | |
| 162 | void Window::setAxesLimits(const array& x, const array& y, const bool exact) { |
| 163 | af_cell temp{_r, _c, NULL, AF_COLORMAP_DEFAULT}; |
| 164 | AF_THROW(af_set_axes_limits_compute(get(), x.get(), y.get(), NULL, exact, |
| 165 | &temp)); |
| 166 | } |
| 167 | |
| 168 | void Window::setAxesLimits(const array& x, const array& y, const array& z, |
| 169 | const bool exact) { |
no test coverage detected