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

Function fg_append_image_to_chart

src/api/c/chart.cpp:149–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

147}
148
149fg_err fg_append_image_to_chart(fg_chart pChart, fg_image pImage)
150{
151 try {
152 ARG_ASSERT(0, (pChart!=0));
153 ARG_ASSERT(1, (pImage!=0));
154
155 getChart(pChart)->addRenderable(getImage(pImage)->impl());
156 }
157 CATCHALL
158
159 return FG_ERR_NONE;
160}
161
162fg_err fg_append_histogram_to_chart(fg_chart pChart, fg_histogram pHistogram)
163{

Callers 1

addMethod · 0.85

Calls 3

getChartFunction · 0.85
getImageFunction · 0.85
addRenderableMethod · 0.45

Tested by

no test coverage detected