1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-17 12:24:24 +02:00

Fixed graph line distortion in PDF output

This commit is contained in:
2016-10-12 20:38:18 +02:00
parent cb52ad8bc5
commit be3c101c07
4 changed files with 124 additions and 79 deletions

View File

@ -15,6 +15,7 @@ public:
qreal s() const {return _s;}
qreal t() const {return _t;}
qreal y() const {return _y;}
qreal x(GraphType type) const {return (type == Distance) ? _s : _t;}
void setS(qreal s) {_s = s;}
void setT(qreal t) {_t = t;}