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

Function fg_append_plot_to_chart

src/api/c/chart.cpp:175–186  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

173}
174
175fg_err fg_append_plot_to_chart(fg_chart pChart, fg_plot pPlot)
176{
177 try {
178 ARG_ASSERT(0, (pChart!=0));
179 ARG_ASSERT(1, (pPlot!=0));
180
181 getChart(pChart)->addRenderable(getPlot(pPlot)->impl());
182 }
183 CATCHALL
184
185 return FG_ERR_NONE;
186}
187
188fg_err fg_append_surface_to_chart(fg_chart pChart, fg_surface pSurface)
189{

Callers 1

addMethod · 0.85

Calls 3

getChartFunction · 0.85
getPlotFunction · 0.85
addRenderableMethod · 0.45

Tested by

no test coverage detected