1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/data/path.cpp

24 lines
398 B
C++

#include "path.h"
RectC Path::boundingRect() const
{
RectC ret;
if (size() < 2)
return ret;
for (int i = 0; i < size(); i++)
ret.unite(at(i).coordinates());
return ret;
}
#ifndef QT_NO_DEBUG
QDebug operator<<(QDebug dbg, const PathPoint &point)
{
dbg.nospace() << "PathPoint(" << point.distance() << ", "
<< point.coordinates() << ")";
return dbg.space();
}
#endif // QT_NO_DEBUG