1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-12-04 16:29:09 +01:00

Compare commits

...

2 Commits

Author SHA1 Message Date
50b0ff1c56 Cosmetics 2023-05-29 23:19:28 +02:00
2b300fab54 Code cleanup 2023-05-29 23:19:16 +02:00
2 changed files with 4 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 224 B

After

Width:  |  Height:  |  Size: 214 B

View File

@ -103,12 +103,10 @@ static Coordinates centroid(const QVector<Coordinates> &polygon)
static double angle(uint type, const QVariant &param) static double angle(uint type, const QVariant &param)
{ {
if (type>>16 == RDOCAL || type>>16 == I_RDOCAL) uint bt = type>>16;
return 90 + param.toDouble();
else if (type>>16 == CURENT) return (bt == RDOCAL || bt == I_RDOCAL || bt == CURENT)
return 90 + param.toDouble(); ? 90 + param.toDouble() : NAN;
else
return NAN;
} }
static bool showLabel(const QImage *img, const Range &range, int zoom, int type) static bool showLabel(const QImage *img, const Range &range, int zoom, int type)