MCPcopy Create free account
hub / github.com/PlotJuggler/PlotJuggler / setAxisScale

Method setAxisScale

pj_plotting/widget/src/PlotWidget.cpp:1230–1235  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1228}
1229
1230void PlotWidget::setAxisScale(QwtAxisId axis_id, double min, double max) {
1231 if (min > max) {
1232 std::swap(min, max);
1233 }
1234 qwtPlot()->setAxisScale(axis_id, min, max);
1235}
1236
1237double PlotWidget::displayOffsetSeconds() const {
1238 if (session_ == nullptr) {

Callers 4

PlotWidgetBaseMethod · 0.45
applyRectToAxesMethod · 0.45
moveCanvasMethod · 0.45
rescaleMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected