Lines Matching refs:QDoubleVector2D
52 QDoubleVector2D QClipperUtils::toVector2D(const IntPoint &p) in toVector2D()
54 …return QDoubleVector2D(double(p.X) * kClipperScaleFactorInv, double(p.Y) * kClipperScaleFactorInv); in toVector2D()
57 IntPoint QClipperUtils::toIntPoint(const QDoubleVector2D &p) in toIntPoint()
62 QList<QDoubleVector2D> QClipperUtils::pathToQList(const Path &path) in pathToQList()
64 QList<QDoubleVector2D> res; in pathToQList()
71 QList<QList<QDoubleVector2D> > QClipperUtils::pathsToQList(const Paths &paths) in pathsToQList()
73 QList<QList<QDoubleVector2D> > res; in pathsToQList()
81 Path QClipperUtils::qListToPath(const QList<QDoubleVector2D> &list) in qListToPath()
85 for (const QDoubleVector2D &p: list) in qListToPath()
90 Paths QClipperUtils::qListToPaths(const QList<QList<QDoubleVector2D> > &lists) in qListToPaths()
94 for (const QList<QDoubleVector2D> &l: lists) { in qListToPaths()