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

Method Plot

src/api/cpp/plot.cpp:18–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16namespace forge
17{
18Plot::Plot(const unsigned pNumPoints, const dtype pDataType, const ChartType pChartType,
19 const PlotType pPlotType, const MarkerType pMarkerType)
20{
21 fg_plot temp = 0;
22 FG_THROW(fg_create_plot(&temp, pNumPoints, (fg_dtype)pDataType,
23 pChartType, pPlotType, pMarkerType));
24 std::swap(mValue, temp);
25}
26
27Plot::Plot(const Plot& pOther)
28{

Callers

nothing calls this directly

Calls 3

fg_create_plotFunction · 0.85
fg_retain_plotFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected