Fix build.

This commit is contained in:
Roman Telezhynskyi 2023-07-15 14:42:17 +03:00
parent 403c57ecc7
commit 8980adda6f

View file

@ -517,7 +517,7 @@ void VHPGLEngine::PlotInternalPaths(QTextStream &out, const VLayoutPiece &detail
QVector<VLayoutPiecePath> internalPaths = detail.GetInternalPaths(); QVector<VLayoutPiecePath> internalPaths = detail.GetInternalPaths();
for (const auto &path : internalPaths) for (const auto &path : internalPaths)
{ {
QVector<VLayoutPoint> points = VLayoutPiece::Map(path.Points(), detail.GetMatrix(), detail.IsMirror()); QVector<VLayoutPoint> points = VLayoutPiece::MapVector(path.Points(), detail.GetMatrix(), detail.IsMirror());
PlotPath(out, CastToPoint(ConvertPath(points)), path.PenStyle()); PlotPath(out, CastToPoint(ConvertPath(points)), path.PenStyle());
} }
} }