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

Function af_draw_scatter_3d

src/api/c/plot.cpp:416–425  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

414}
415
416af_err af_draw_scatter_3d(const af_window wind, const af_array X,
417 const af_array Y, const af_array Z,
418 const af_marker_type af_marker,
419 const af_cell* const props) {
420 try {
421 fg_marker_type fg_marker = getFGMarker(af_marker);
422 return plotWrapper(wind, X, Y, Z, props, FG_PLOT_SCATTER, fg_marker);
423 }
424 CATCHALL;
425}
426
427// Deprecated Scatter API
428af_err af_draw_scatter(const af_window wind, const af_array X, const af_array Y,

Callers 1

scatterMethod · 0.50

Calls 2

getFGMarkerFunction · 0.85
plotWrapperFunction · 0.85

Tested by

no test coverage detected