| 130 | } |
| 131 | |
| 132 | void Window::vectorField(const array& points, const array& directions, |
| 133 | const char* const title) { |
| 134 | af_cell temp{_r, _c, title, AF_COLORMAP_DEFAULT}; |
| 135 | AF_THROW( |
| 136 | af_draw_vector_field_nd(get(), points.get(), directions.get(), &temp)); |
| 137 | } |
| 138 | |
| 139 | void Window::vectorField(const array& xPoints, const array& yPoints, |
| 140 | const array& zPoints, const array& xDirs, |
no test coverage detected