MCPcopy Create free account
hub / github.com/KDE/labplot / xMinimum

Method xMinimum

src/backend/worksheet/plots/cartesian/Histogram.cpp:652–663  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

650}
651
652double HistogramPrivate::xMinimum() const {
653 switch (orientation) {
654 case Histogram::Orientation::Vertical:
655 return autoBinRanges ? dataColumn->minimum() : binRangesMin;
656 case Histogram::Orientation::Horizontal:
657 return 0.;
658 case Histogram::Orientation::Both:
659 break;
660 }
661
662 return INFINITY;
663}
664
665double HistogramPrivate::xMaximum() const {
666 switch (orientation) {

Callers 1

minimumMethod · 0.80

Calls 1

minimumMethod · 0.45

Tested by

no test coverage detected