Deprecated Scatter API
| 426 | |
| 427 | // Deprecated Scatter API |
| 428 | af_err af_draw_scatter(const af_window wind, const af_array X, const af_array Y, |
| 429 | const af_marker_type af_marker, |
| 430 | const af_cell* const props) { |
| 431 | try { |
| 432 | fg_marker_type fg_marker = getFGMarker(af_marker); |
| 433 | return plotWrapper(wind, X, Y, props, FG_PLOT_SCATTER, fg_marker); |
| 434 | } |
| 435 | CATCHALL; |
| 436 | } |
| 437 | |
| 438 | af_err af_draw_scatter3(const af_window wind, const af_array P, |
| 439 | const af_marker_type af_marker, |
nothing calls this directly
no test coverage detected