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

Function fg_append_histogram_to_chart

src/api/c/chart.cpp:162–173  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

160}
161
162fg_err fg_append_histogram_to_chart(fg_chart pChart, fg_histogram pHistogram)
163{
164 try {
165 ARG_ASSERT(0, (pChart!=0));
166 ARG_ASSERT(1, (pHistogram!=0));
167
168 getChart(pChart)->addRenderable(getHistogram(pHistogram)->impl());
169 }
170 CATCHALL
171
172 return FG_ERR_NONE;
173}
174
175fg_err fg_append_plot_to_chart(fg_chart pChart, fg_plot pPlot)
176{

Callers 1

addMethod · 0.85

Calls 3

getChartFunction · 0.85
getHistogramFunction · 0.85
addRenderableMethod · 0.45

Tested by

no test coverage detected