| 425 | } |
| 426 | |
| 427 | af_err af_draw_vector_field_3d(const af_window wind, const af_array xPoints, |
| 428 | const af_array yPoints, const af_array zPoints, |
| 429 | const af_array xDirs, const af_array yDirs, |
| 430 | const af_array zDirs, |
| 431 | const af_cell* const props) { |
| 432 | return vectorFieldWrapper(wind, xPoints, yPoints, zPoints, xDirs, yDirs, |
| 433 | zDirs, props); |
| 434 | } |
| 435 | |
| 436 | af_err af_draw_vector_field_2d(const af_window wind, const af_array xPoints, |
| 437 | const af_array yPoints, const af_array xDirs, |
no test coverage detected