MCPcopy Index your code
hub / github.com/Audio4Linux/JDSP4Linux / graphs

Method graphs

3rdparty/qcustomplot/qcustomplot.cpp:9414–9425  ·  view source on GitHub ↗

! Returns a list of all the graphs that have this axis as key or value axis. \see plottables, items */

Source from the content-addressed store, hash-verified

9412 \see plottables, items
9413*/
9414QList<QCPGraph*> QCPAxis::graphs() const
9415{
9416 QList<QCPGraph*> result;
9417 if (!mParentPlot) return result;
9418
9419 foreach (QCPGraph *graph, mParentPlot->mGraphs)
9420 {
9421 if (graph->keyAxis() == this || graph->valueAxis() == this)
9422 result.append(graph);
9423 }
9424 return result;
9425}
9426
9427/*!
9428 Returns a list of all the items that are associated with this axis. An item is considered

Callers

nothing calls this directly

Calls 3

appendMethod · 0.80
axisRectMethod · 0.80
foreachFunction · 0.70

Tested by

no test coverage detected