2016-07-25 19:32:36 +02:00
|
|
|
#include <cmath>
|
2016-11-16 23:54:15 +01:00
|
|
|
#include <cctype>
|
2016-07-25 19:32:36 +02:00
|
|
|
#include "misc.h"
|
|
|
|
|
2016-08-02 20:46:22 +02:00
|
|
|
|
2016-07-25 19:32:36 +02:00
|
|
|
double niceNum(double x, int round)
|
|
|
|
{
|
|
|
|
int expv;
|
|
|
|
double f;
|
|
|
|
double nf;
|
|
|
|
|
|
|
|
expv = (int)floor(log10(x));
|
|
|
|
f = x / pow(10.0, expv);
|
|
|
|
|
|
|
|
if (round) {
|
|
|
|
if (f < 1.5)
|
|
|
|
nf = 1.0;
|
|
|
|
else if (f < 3.0)
|
|
|
|
nf = 2.0;
|
|
|
|
else if (f < 7.0)
|
|
|
|
nf = 5.0;
|
|
|
|
else
|
|
|
|
nf = 10.0;
|
|
|
|
} else {
|
|
|
|
if (f <= 1.0)
|
|
|
|
nf = 1.0;
|
|
|
|
else if (f <= 2.0)
|
|
|
|
nf = 2.0;
|
|
|
|
else if (f <= 5.0)
|
|
|
|
nf = 5.0;
|
|
|
|
else
|
|
|
|
nf = 10.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nf * pow(10.0, expv);
|
|
|
|
}
|
2016-11-16 23:54:15 +01:00
|
|
|
|
|
|
|
int str2int(const char *str, int len)
|
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
for (const char *sp = str; sp < str + len; sp++) {
|
|
|
|
if (::isdigit(*sp))
|
|
|
|
res = res * 10 + *sp - '0';
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
2017-03-18 01:30:31 +01:00
|
|
|
|
|
|
|
QRectF scaled(const QRectF &rect, qreal factor)
|
|
|
|
{
|
|
|
|
return QRectF(QPointF(rect.left() * factor, rect.top() * factor),
|
|
|
|
QSizeF(rect.width() * factor, rect.height() * factor));
|
|
|
|
}
|