MCPcopy Create free account
hub / github.com/arrayfire/forge / fg_draw_chart

Function fg_draw_chart

src/api/c/window.cpp:233–243  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

231}
232
233fg_err fg_draw_chart(const fg_window pWindow, const fg_chart pChart)
234{
235 try {
236 ARG_ASSERT(0, (pWindow!=0));
237 ARG_ASSERT(1, (pChart!=0));
238
239 getWindow(pWindow)->draw(getChart(pChart));
240 }
241 CATCHALL
242 return FG_ERR_NONE;
243}
244
245fg_err fg_draw_image_to_cell(const fg_window pWindow, const int pRows, const int pCols, const int pIndex,
246 const fg_image pImage, const char* pTitle, const bool pKeepAspectRatio)

Callers 1

drawMethod · 0.85

Calls 3

getWindowFunction · 0.85
getChartFunction · 0.85
drawMethod · 0.45

Tested by

no test coverage detected