| 20 | } |
| 21 | |
| 22 | void PlotMagnifier::setAxisLimits(int axis, double lower, double upper) { |
| 23 | if (axis >= 0 && axis < QwtPlot::axisCnt) { |
| 24 | lower_bounds_[axis] = lower; |
| 25 | upper_bounds_[axis] = upper; |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | void PlotMagnifier::rescale(double factor, AxisMode axis) { |
| 30 | factor = qAbs(1.0 / factor); |
no outgoing calls
no test coverage detected