Cosmetics
[GPXSee.git] / src / range.cpp
blob216391067398331b906cc1ff3f62f2719cdb0384
1 #include "range.h"
3 void RangeF::resize(qreal size)
5 qreal adj = (size/2 - this->size()/2);
7 _min -= adj;
8 _max += adj;
11 QDebug operator<<(QDebug dbg, const RangeF &range)
13 dbg.nospace() << "RangeF(" << range.min() << ", " << range.max() << ")";
14 return dbg.maybeSpace();