MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / af_draw_scatter

Function af_draw_scatter

src/api/c/plot.cpp:428–436  ·  view source on GitHub ↗

Deprecated Scatter API

Source from the content-addressed store, hash-verified

426
427// Deprecated Scatter API
428af_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
438af_err af_draw_scatter3(const af_window wind, const af_array P,
439 const af_marker_type af_marker,

Callers

nothing calls this directly

Calls 2

getFGMarkerFunction · 0.85
plotWrapperFunction · 0.85

Tested by

no test coverage detected