MCPcopy Create free account
hub / github.com/LUX-Core/lux / findEnd

Method findEnd

src/qt/qcustomplot.cpp:27439–27452  ·  view source on GitHub ↗

inherits documentation from base class */

Source from the content-addressed store, hash-verified

27437
27438/* inherits documentation from base class */
27439int QCPErrorBars::findEnd(double sortKey, bool expandedRange) const
27440{
27441 if (mDataPlottable)
27442 {
27443 if (mDataContainer->isEmpty())
27444 return 0;
27445 int endIndex = mDataPlottable->interface1D()->findEnd(sortKey, expandedRange);
27446 if (endIndex > mDataContainer->size())
27447 endIndex = mDataContainer->size();
27448 return endIndex;
27449 } else
27450 qDebug() << Q_FUNC_INFO << "no data plottable set";
27451 return 0;
27452}
27453
27454/* inherits documentation from base class */
27455double QCPErrorBars::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const

Callers 4

getVisibleDataBoundsMethod · 0.45
pointDistanceMethod · 0.45
getValueRangeMethod · 0.45
getStackedBaseValueMethod · 0.45

Calls 2

isEmptyMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected