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

Function fg_append_surface_to_chart

src/api/c/chart.cpp:188–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

186}
187
188fg_err fg_append_surface_to_chart(fg_chart pChart, fg_surface pSurface)
189{
190 try {
191 ARG_ASSERT(0, (pChart!=0));
192 ARG_ASSERT(1, (pSurface!=0));
193
194 getChart(pChart)->addRenderable(getSurface(pSurface)->impl());
195 }
196 CATCHALL
197
198 return FG_ERR_NONE;
199}
200
201fg_err fg_append_vector_field_to_chart(fg_chart pChart, fg_vector_field pField)
202{

Callers 1

addMethod · 0.85

Calls 3

getChartFunction · 0.85
getSurfaceFunction · 0.85
addRenderableMethod · 0.45

Tested by

no test coverage detected