2016-11-03 16:59:53 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 3 11, 2016
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2016 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
|
|
**
|
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#include "vpiece.h"
|
|
|
|
#include "vpiece_p.h"
|
2016-11-03 19:15:53 +01:00
|
|
|
#include "../vgeometry/vpointf.h"
|
|
|
|
#include "../vgeometry/vabstractcurve.h"
|
|
|
|
#include "vcontainer.h"
|
2017-04-05 12:22:33 +02:00
|
|
|
#include "../vmisc/vabstractapplication.h"
|
2016-11-03 19:15:53 +01:00
|
|
|
|
|
|
|
#include <QSharedPointer>
|
|
|
|
#include <QDebug>
|
2016-11-05 09:56:44 +01:00
|
|
|
#include <QPainterPath>
|
2016-11-03 16:59:53 +01:00
|
|
|
|
2017-04-05 12:22:33 +02:00
|
|
|
const qreal passmarkFactor = 0.5;
|
|
|
|
const qreal maxPassmarkLength = (10/*mm*/ / 25.4) * PrintDPI;
|
|
|
|
|
2017-01-31 17:09:18 +01:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
QVector<quint32> PieceMissingNodes(const QVector<quint32> &d1Nodes, const QVector<quint32> &d2Nodes)
|
|
|
|
{
|
|
|
|
if (d1Nodes.size() == d2Nodes.size()) //-V807
|
|
|
|
{
|
|
|
|
return QVector<quint32>();
|
|
|
|
}
|
|
|
|
|
|
|
|
QSet<quint32> set1;
|
|
|
|
for (qint32 i = 0; i < d1Nodes.size(); ++i)
|
|
|
|
{
|
|
|
|
set1.insert(d1Nodes.at(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
QSet<quint32> set2;
|
|
|
|
for (qint32 j = 0; j < d2Nodes.size(); ++j)
|
|
|
|
{
|
|
|
|
set2.insert(d2Nodes.at(j));
|
|
|
|
}
|
|
|
|
|
|
|
|
const QList<quint32> set3 = set1.subtract(set2).toList();
|
|
|
|
QVector<quint32> r;
|
|
|
|
for (qint32 i = 0; i < set3.size(); ++i)
|
|
|
|
{
|
|
|
|
r.append(set3.at(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
2017-03-28 12:09:00 +02:00
|
|
|
|
|
|
|
const qreal passmarkGap = (1.5/*mm*/ / 25.4) * PrintDPI;
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<QLineF> CreateTwoPassmarkLines(const QLineF &line)
|
|
|
|
{
|
|
|
|
QPointF l1p1;
|
|
|
|
{
|
|
|
|
QLineF line1 = line;
|
|
|
|
line1.setAngle(line1.angle() + 90);
|
|
|
|
line1.setLength(passmarkGap/2.);
|
|
|
|
l1p1 = line1.p2();
|
|
|
|
}
|
|
|
|
|
|
|
|
QPointF l2p1;
|
|
|
|
{
|
|
|
|
QLineF line2 = line;
|
|
|
|
line2.setAngle(line2.angle() - 90);
|
|
|
|
line2.setLength(passmarkGap/2.);
|
|
|
|
l2p1 = line2.p2();
|
|
|
|
}
|
|
|
|
|
|
|
|
QPointF l1p2;
|
|
|
|
{
|
|
|
|
QLineF line1 = QLineF(line.p2(), line.p1());
|
|
|
|
line1.setAngle(line1.angle() - 90);
|
|
|
|
line1.setLength(passmarkGap/2.);
|
|
|
|
l1p2 = line1.p2();
|
|
|
|
}
|
|
|
|
|
|
|
|
QPointF l2p2;
|
|
|
|
{
|
|
|
|
QLineF line2 = QLineF(line.p2(), line.p1());
|
|
|
|
line2.setAngle(line2.angle() + 90);
|
|
|
|
line2.setLength(passmarkGap/2.);
|
|
|
|
l2p2 = line2.p2();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVector<QLineF> lines;
|
|
|
|
lines.append(QLineF(l1p1, l1p2));
|
|
|
|
lines.append(QLineF(l2p1, l2p2));
|
|
|
|
return lines;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<QLineF> CreateThreePassmarkLines(const QLineF &line)
|
|
|
|
{
|
|
|
|
QPointF l1p1;
|
|
|
|
{
|
|
|
|
QLineF line1 = line;
|
|
|
|
line1.setAngle(line1.angle() + 90);
|
|
|
|
line1.setLength(passmarkGap);
|
|
|
|
l1p1 = line1.p2();
|
|
|
|
}
|
|
|
|
|
|
|
|
QPointF l2p1;
|
|
|
|
{
|
|
|
|
QLineF line2 = line;
|
|
|
|
line2.setAngle(line2.angle() - 90);
|
|
|
|
line2.setLength(passmarkGap);
|
|
|
|
l2p1 = line2.p2();
|
|
|
|
}
|
|
|
|
|
|
|
|
QPointF l1p2;
|
|
|
|
{
|
|
|
|
QLineF line1 = QLineF(line.p2(), line.p1());
|
|
|
|
line1.setAngle(line1.angle() - 90);
|
|
|
|
line1.setLength(passmarkGap);
|
|
|
|
l1p2 = line1.p2();
|
|
|
|
}
|
|
|
|
|
|
|
|
QPointF l2p2;
|
|
|
|
{
|
|
|
|
QLineF line2 = QLineF(line.p2(), line.p1());
|
|
|
|
line2.setAngle(line2.angle() + 90);
|
|
|
|
line2.setLength(passmarkGap);
|
|
|
|
l2p2 = line2.p2();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVector<QLineF> lines;
|
|
|
|
lines.append(QLineF(l1p1, l1p2));
|
|
|
|
lines.append(line);
|
|
|
|
lines.append(QLineF(l2p1, l2p2));
|
|
|
|
return lines;
|
|
|
|
}
|
2017-03-30 12:59:10 +02:00
|
|
|
|
2017-04-05 12:22:33 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<QLineF> CreateTMarkPassmark(const QLineF &line)
|
|
|
|
{
|
|
|
|
QPointF p1;
|
|
|
|
{
|
|
|
|
QLineF tmpLine = QLineF(line.p2(), line.p1());
|
|
|
|
tmpLine.setAngle(tmpLine.angle() - 90);
|
|
|
|
tmpLine.setLength(line.length() * 0.75 / 2);
|
|
|
|
p1 = tmpLine.p2();
|
|
|
|
}
|
|
|
|
|
|
|
|
QPointF p2;
|
|
|
|
{
|
|
|
|
QLineF tmpLine = QLineF(line.p2(), line.p1());
|
|
|
|
tmpLine.setAngle(tmpLine.angle() + 90);
|
|
|
|
tmpLine.setLength(line.length() * 0.75 / 2);
|
|
|
|
p2 = tmpLine.p2();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVector<QLineF> lines;
|
|
|
|
lines.append(line);
|
|
|
|
lines.append(QLineF(p1, p2));
|
|
|
|
return lines;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<QLineF> CreateVMarkPassmark(const QLineF &line)
|
|
|
|
{
|
|
|
|
QLineF l1 = line;
|
|
|
|
l1.setAngle(l1.angle() - 35);
|
|
|
|
|
|
|
|
QLineF l2 = line;
|
|
|
|
l2.setAngle(l2.angle() + 35);
|
|
|
|
|
|
|
|
QVector<QLineF> lines;
|
|
|
|
lines.append(l1);
|
|
|
|
lines.append(l2);
|
|
|
|
return lines;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<QLineF> CreatePassmarkLines(PassmarkLineType lineType, PassmarkAngleType angleType, const QLineF &line)
|
|
|
|
{
|
|
|
|
QVector<QLineF> passmarksLines;
|
|
|
|
|
2017-04-25 10:42:08 +02:00
|
|
|
if (angleType == PassmarkAngleType::Straightforward || angleType == PassmarkAngleType::Intersection)
|
2017-04-05 12:22:33 +02:00
|
|
|
{
|
|
|
|
switch (lineType)
|
|
|
|
{
|
|
|
|
case PassmarkLineType::TwoLines:
|
|
|
|
passmarksLines += CreateTwoPassmarkLines(line);
|
|
|
|
break;
|
|
|
|
case PassmarkLineType::ThreeLines:
|
|
|
|
passmarksLines += CreateThreePassmarkLines(line);
|
|
|
|
break;
|
|
|
|
case PassmarkLineType::TMark:
|
|
|
|
passmarksLines += CreateTMarkPassmark(line);
|
|
|
|
break;
|
|
|
|
case PassmarkLineType::VMark:
|
|
|
|
passmarksLines += CreateVMarkPassmark(line);
|
|
|
|
break;
|
|
|
|
case PassmarkLineType::OneLine:
|
|
|
|
default:
|
|
|
|
passmarksLines.append(line);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (lineType)
|
|
|
|
{
|
|
|
|
case PassmarkLineType::TMark:
|
|
|
|
passmarksLines += CreateTMarkPassmark(line);
|
|
|
|
break;
|
|
|
|
case PassmarkLineType::OneLine:
|
|
|
|
case PassmarkLineType::TwoLines:
|
|
|
|
case PassmarkLineType::ThreeLines:
|
|
|
|
case PassmarkLineType::VMark:
|
|
|
|
default:
|
|
|
|
passmarksLines.append(line);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return passmarksLines;
|
|
|
|
}
|
|
|
|
|
2017-03-30 12:59:10 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool IsPassmarksPossible(const QVector<VPieceNode> &path)
|
|
|
|
{
|
|
|
|
int countPointNodes = 0;
|
|
|
|
int countOthers = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i< path.size(); ++i)
|
|
|
|
{
|
|
|
|
const VPieceNode &node = path.at(i);
|
|
|
|
if (node.IsExcluded())
|
|
|
|
{
|
|
|
|
continue;// skip node
|
|
|
|
}
|
|
|
|
|
|
|
|
node.GetTypeTool() == Tool::NodePoint ? ++countPointNodes : ++countOthers;
|
|
|
|
}
|
|
|
|
|
|
|
|
return countPointNodes >= 3 || (countPointNodes >= 1 && countOthers >= 1);
|
|
|
|
}
|
2017-01-31 17:09:18 +01:00
|
|
|
}
|
|
|
|
|
2016-11-03 16:59:53 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VPiece::VPiece()
|
2016-11-24 20:26:51 +01:00
|
|
|
: VAbstractPiece(), d(new VPieceData(PiecePathType::PiecePath))
|
2016-11-03 16:59:53 +01:00
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VPiece::VPiece(const VPiece &piece)
|
2016-11-03 19:15:53 +01:00
|
|
|
: VAbstractPiece(piece), d (piece.d)
|
2016-11-03 16:59:53 +01:00
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VPiece &VPiece::operator=(const VPiece &piece)
|
|
|
|
{
|
|
|
|
if ( &piece == this )
|
|
|
|
{
|
|
|
|
return *this;
|
|
|
|
}
|
2016-11-03 19:15:53 +01:00
|
|
|
VAbstractPiece::operator=(piece);
|
2016-11-03 16:59:53 +01:00
|
|
|
d = piece.d;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VPiece::~VPiece()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-11-23 11:54:46 +01:00
|
|
|
VPiecePath VPiece::GetPath() const
|
2016-11-03 16:59:53 +01:00
|
|
|
{
|
2016-11-23 11:54:46 +01:00
|
|
|
return d->m_path;
|
2016-11-03 16:59:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-11-23 11:54:46 +01:00
|
|
|
VPiecePath &VPiece::GetPath()
|
2016-11-03 16:59:53 +01:00
|
|
|
{
|
2016-11-23 11:54:46 +01:00
|
|
|
return d->m_path;
|
2016-11-03 16:59:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-11-23 11:54:46 +01:00
|
|
|
void VPiece::SetPath(const VPiecePath &path)
|
2016-11-03 16:59:53 +01:00
|
|
|
{
|
2016-11-23 11:54:46 +01:00
|
|
|
d->m_path = path;
|
2016-11-03 16:59:53 +01:00
|
|
|
}
|
2016-11-03 19:15:53 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<QPointF> VPiece::MainPathPoints(const VContainer *data) const
|
|
|
|
{
|
2016-11-23 11:54:46 +01:00
|
|
|
QVector<QPointF> points = GetPath().PathPoints(data);
|
2016-11-03 19:15:53 +01:00
|
|
|
points = CheckLoops(CorrectEquidistantPoints(points));//A path can contains loops
|
|
|
|
return points;
|
|
|
|
}
|
|
|
|
|
2016-11-05 09:56:44 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-03-22 11:05:53 +01:00
|
|
|
QVector<VPointF> VPiece::MainPathNodePoints(const VContainer *data, bool showExcluded) const
|
2016-11-05 09:56:44 +01:00
|
|
|
{
|
2017-03-22 11:05:53 +01:00
|
|
|
return GetPath().PathNodePoints(data, showExcluded);
|
2016-11-05 09:56:44 +01:00
|
|
|
}
|
|
|
|
|
2016-11-10 13:06:09 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<QPointF> VPiece::SeamAllowancePoints(const VContainer *data) const
|
|
|
|
{
|
|
|
|
SCASSERT(data != nullptr);
|
|
|
|
|
2016-11-11 16:55:02 +01:00
|
|
|
|
2017-04-05 12:22:33 +02:00
|
|
|
if (not IsSeamAllowance() || IsSeamAllowanceBuiltIn())
|
2016-11-10 13:06:09 +01:00
|
|
|
{
|
2016-11-11 16:55:02 +01:00
|
|
|
return QVector<QPointF>();
|
2016-11-10 13:06:09 +01:00
|
|
|
}
|
|
|
|
|
2017-03-28 12:09:00 +02:00
|
|
|
const QVector<CustomSARecord> records = FilterRecords(GetValidRecords());
|
2016-11-29 13:10:53 +01:00
|
|
|
int recordIndex = -1;
|
|
|
|
bool insertingCSA = false;
|
|
|
|
const qreal width = ToPixel(GetSAWidth(), *data->GetPatternUnit());
|
2017-03-30 11:26:06 +02:00
|
|
|
const QVector<VPieceNode> unitedPath = GetUnitedPath(data);
|
2016-11-29 13:10:53 +01:00
|
|
|
|
2016-11-11 16:55:02 +01:00
|
|
|
QVector<VSAPoint> pointsEkv;
|
2017-03-30 11:26:06 +02:00
|
|
|
for (int i = 0; i< unitedPath.size(); ++i)
|
2016-11-10 13:06:09 +01:00
|
|
|
{
|
2017-03-30 11:26:06 +02:00
|
|
|
const VPieceNode &node = unitedPath.at(i);
|
2017-03-22 11:05:53 +01:00
|
|
|
if (node.IsExcluded())
|
|
|
|
{
|
|
|
|
continue;// skip excluded node
|
|
|
|
}
|
|
|
|
|
2016-11-12 12:31:37 +01:00
|
|
|
switch (node.GetTypeTool())
|
2016-11-10 13:06:09 +01:00
|
|
|
{
|
|
|
|
case (Tool::NodePoint):
|
|
|
|
{
|
2016-11-29 13:10:53 +01:00
|
|
|
if (not insertingCSA)
|
|
|
|
{
|
|
|
|
pointsEkv.append(VPiecePath::PreparePointEkv(node, data));
|
|
|
|
|
|
|
|
recordIndex = IsCSAStart(records, node.GetId());
|
2017-03-30 11:26:06 +02:00
|
|
|
if (recordIndex != -1 && records.at(recordIndex).includeType == PiecePathIncludeType::AsCustomSA)
|
2016-11-29 13:10:53 +01:00
|
|
|
{
|
|
|
|
insertingCSA = true;
|
|
|
|
|
|
|
|
const VPiecePath path = data->GetPiecePath(records.at(recordIndex).path);
|
|
|
|
QVector<VSAPoint> r = path.SeamAllowancePoints(data, width, records.at(recordIndex).reverse);
|
|
|
|
|
2017-03-30 11:26:06 +02:00
|
|
|
for (int j = 0; j < r.size(); ++j)
|
2016-11-29 13:10:53 +01:00
|
|
|
{
|
2017-03-30 11:26:06 +02:00
|
|
|
r[j].SetAngleType(PieceNodeAngle::ByLength);
|
|
|
|
r[j].SetSABefore(0);
|
|
|
|
r[j].SetSAAfter(0);
|
2016-11-29 13:10:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pointsEkv += r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (records.at(recordIndex).endPoint == node.GetId())
|
|
|
|
{
|
|
|
|
insertingCSA = false;
|
|
|
|
recordIndex = -1;
|
|
|
|
|
|
|
|
pointsEkv.append(VPiecePath::PreparePointEkv(node, data));
|
|
|
|
}
|
|
|
|
}
|
2016-11-10 13:06:09 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case (Tool::NodeArc):
|
2017-02-10 15:47:15 +01:00
|
|
|
case (Tool::NodeElArc):
|
2016-11-10 13:06:09 +01:00
|
|
|
case (Tool::NodeSpline):
|
|
|
|
case (Tool::NodeSplinePath):
|
|
|
|
{
|
2016-11-29 13:10:53 +01:00
|
|
|
if (not insertingCSA)
|
|
|
|
{
|
|
|
|
const QSharedPointer<VAbstractCurve> curve = data->GeometricObject<VAbstractCurve>(node.GetId());
|
|
|
|
|
2017-03-30 11:26:06 +02:00
|
|
|
pointsEkv += VPiecePath::CurveSeamAllowanceSegment(data, unitedPath, curve, i, node.GetReverse(),
|
|
|
|
width);
|
2016-11-29 13:10:53 +01:00
|
|
|
}
|
2016-11-10 13:06:09 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2016-11-12 12:31:37 +01:00
|
|
|
qDebug()<<"Get wrong tool type. Ignore."<< static_cast<char>(node.GetTypeTool());
|
2016-11-10 13:06:09 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-29 13:10:53 +01:00
|
|
|
return Equidistant(pointsEkv, width);
|
2016-11-10 13:06:09 +01:00
|
|
|
}
|
|
|
|
|
2017-03-28 12:09:00 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<QLineF> VPiece::PassmarksLines(const VContainer *data) const
|
|
|
|
{
|
2017-03-30 11:26:06 +02:00
|
|
|
const QVector<VPieceNode> unitedPath = GetUnitedPath(data);
|
|
|
|
if (not IsSeamAllowance() || not IsPassmarksPossible(unitedPath))
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
|
|
|
return QVector<QLineF>();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVector<QLineF> passmarks;
|
|
|
|
|
2017-03-30 11:26:06 +02:00
|
|
|
for (int i = 0; i< unitedPath.size(); ++i)
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
2017-03-30 11:26:06 +02:00
|
|
|
const VPieceNode &node = unitedPath.at(i);
|
2017-03-28 12:09:00 +02:00
|
|
|
if (node.IsExcluded() || not node.IsPassmark())
|
|
|
|
{
|
|
|
|
continue;// skip node
|
|
|
|
}
|
|
|
|
|
|
|
|
int passmarkIndex = i;
|
|
|
|
|
|
|
|
int previousIndex = 0;
|
|
|
|
if (passmarkIndex == 0)
|
|
|
|
{
|
2017-03-30 11:26:06 +02:00
|
|
|
previousIndex = VPiecePath::FindInLoopNotExcludedUp(unitedPath.size()-1, unitedPath);
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-30 11:26:06 +02:00
|
|
|
previousIndex = VPiecePath::FindInLoopNotExcludedUp(passmarkIndex-1, unitedPath);
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int nextIndex = 0;
|
2017-03-30 11:26:06 +02:00
|
|
|
if (passmarkIndex == unitedPath.size()-1)
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
2017-03-30 11:26:06 +02:00
|
|
|
nextIndex = VPiecePath::FindInLoopNotExcludedDown(0, unitedPath);
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-30 11:26:06 +02:00
|
|
|
nextIndex = VPiecePath::FindInLoopNotExcludedDown(passmarkIndex+1, unitedPath);
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
|
|
|
|
2017-03-30 11:26:06 +02:00
|
|
|
passmarks += CreatePassmark(unitedPath, previousIndex, passmarkIndex, nextIndex, data);
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return passmarks;
|
|
|
|
}
|
|
|
|
|
2016-11-05 09:56:44 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QPainterPath VPiece::MainPathPath(const VContainer *data) const
|
|
|
|
{
|
|
|
|
const QVector<QPointF> points = MainPathPoints(data);
|
|
|
|
QPainterPath path;
|
|
|
|
|
|
|
|
if (not points.isEmpty())
|
|
|
|
{
|
|
|
|
path.moveTo(points[0]);
|
|
|
|
for (qint32 i = 1; i < points.count(); ++i)
|
|
|
|
{
|
|
|
|
path.lineTo(points.at(i));
|
|
|
|
}
|
|
|
|
path.lineTo(points.at(0));
|
|
|
|
path.setFillRule(Qt::WindingFill);
|
|
|
|
}
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2016-11-08 11:53:14 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-11-10 13:06:09 +01:00
|
|
|
QPainterPath VPiece::SeamAllowancePath(const VContainer *data) const
|
|
|
|
{
|
|
|
|
const QVector<QPointF> pointsEkv = SeamAllowancePoints(data);
|
|
|
|
QPainterPath ekv;
|
|
|
|
|
|
|
|
// seam allowence
|
2017-04-05 12:22:33 +02:00
|
|
|
if (IsSeamAllowance() && not IsSeamAllowanceBuiltIn())
|
2016-11-10 13:06:09 +01:00
|
|
|
{
|
|
|
|
if (not pointsEkv.isEmpty())
|
|
|
|
{
|
|
|
|
ekv.moveTo(pointsEkv.at(0));
|
|
|
|
for (qint32 i = 1; i < pointsEkv.count(); ++i)
|
|
|
|
{
|
|
|
|
ekv.lineTo(pointsEkv.at(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
ekv.setFillRule(Qt::WindingFill);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ekv;
|
|
|
|
}
|
|
|
|
|
2017-03-28 12:09:00 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QPainterPath VPiece::PassmarksPath(const VContainer *data) const
|
|
|
|
{
|
|
|
|
const QVector<QLineF> passmarks = PassmarksLines(data);
|
|
|
|
QPainterPath path;
|
|
|
|
|
|
|
|
// seam allowence
|
|
|
|
if (IsSeamAllowance())
|
|
|
|
{
|
|
|
|
if (not passmarks.isEmpty())
|
|
|
|
{
|
|
|
|
for (qint32 i = 0; i < passmarks.count(); ++i)
|
|
|
|
{
|
|
|
|
path.moveTo(passmarks.at(i).p1());
|
|
|
|
path.lineTo(passmarks.at(i).p2());
|
|
|
|
}
|
|
|
|
|
|
|
|
path.setFillRule(Qt::WindingFill);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2016-11-10 13:06:09 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-11-08 11:53:14 +01:00
|
|
|
qreal VPiece::GetMx() const
|
|
|
|
{
|
|
|
|
return d->m_mx;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPiece::SetMx(qreal value)
|
|
|
|
{
|
|
|
|
d->m_mx = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
qreal VPiece::GetMy() const
|
|
|
|
{
|
|
|
|
return d->m_my;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPiece::SetMy(qreal value)
|
|
|
|
{
|
|
|
|
d->m_my = value;
|
|
|
|
}
|
|
|
|
|
2016-11-09 13:11:58 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-11-09 14:53:22 +01:00
|
|
|
bool VPiece::IsInLayout() const
|
|
|
|
{
|
|
|
|
return d->m_inLayout;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPiece::SetInLayout(bool inLayout)
|
|
|
|
{
|
|
|
|
d->m_inLayout = inLayout;
|
|
|
|
}
|
|
|
|
|
2016-11-23 17:40:27 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool VPiece::IsUnited() const
|
|
|
|
{
|
|
|
|
return d->m_united;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPiece::SetUnited(bool united)
|
|
|
|
{
|
|
|
|
d->m_united = united;
|
|
|
|
}
|
|
|
|
|
2017-01-21 14:24:40 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VPiece::GetFormulaSAWidth() const
|
|
|
|
{
|
|
|
|
return d->m_formulaWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPiece::SetFormulaSAWidth(const QString &formula, qreal value)
|
|
|
|
{
|
|
|
|
SetSAWidth(value);
|
|
|
|
const qreal width = GetSAWidth();
|
|
|
|
width >= 0 ? d->m_formulaWidth = formula : d->m_formulaWidth = QLatin1String("0");
|
|
|
|
}
|
|
|
|
|
2016-12-03 17:01:39 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<quint32> VPiece::GetInternalPaths() const
|
|
|
|
{
|
|
|
|
return d->m_internalPaths;
|
|
|
|
}
|
|
|
|
|
2017-01-31 15:26:28 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<quint32> &VPiece::GetInternalPaths()
|
|
|
|
{
|
|
|
|
return d->m_internalPaths;
|
|
|
|
}
|
|
|
|
|
2016-12-03 17:01:39 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPiece::SetInternalPaths(const QVector<quint32> &iPaths)
|
|
|
|
{
|
|
|
|
d->m_internalPaths = iPaths;
|
|
|
|
}
|
|
|
|
|
2017-01-18 09:17:18 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-01-31 15:26:28 +01:00
|
|
|
QVector<CustomSARecord> VPiece::GetCustomSARecords() const
|
2017-01-18 09:17:18 +01:00
|
|
|
{
|
2017-01-31 15:26:28 +01:00
|
|
|
return d->m_customSARecords;
|
2017-01-18 09:17:18 +01:00
|
|
|
}
|
|
|
|
|
2016-11-25 13:19:44 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-01-31 15:26:28 +01:00
|
|
|
QVector<CustomSARecord> &VPiece::GetCustomSARecords()
|
2016-11-25 13:19:44 +01:00
|
|
|
{
|
|
|
|
return d->m_customSARecords;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPiece::SetCustomSARecords(const QVector<CustomSARecord> &records)
|
|
|
|
{
|
|
|
|
d->m_customSARecords = records;
|
|
|
|
}
|
|
|
|
|
2017-01-18 09:17:18 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-01-31 15:26:28 +01:00
|
|
|
QVector<quint32> VPiece::GetPins() const
|
|
|
|
{
|
|
|
|
return d->m_pins;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<quint32> &VPiece::GetPins()
|
|
|
|
{
|
|
|
|
return d->m_pins;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPiece::SetPins(const QVector<quint32> &pins)
|
2017-01-18 09:17:18 +01:00
|
|
|
{
|
2017-01-31 15:26:28 +01:00
|
|
|
d->m_pins = pins;
|
2017-01-18 09:17:18 +01:00
|
|
|
}
|
|
|
|
|
2016-11-09 14:53:22 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-11-09 13:11:58 +01:00
|
|
|
/**
|
2016-11-25 14:35:52 +01:00
|
|
|
* @brief MissingNodes find missing nodes in detail. When we deleted object in detail and return this detail need
|
2016-11-09 13:11:58 +01:00
|
|
|
* understand, what nodes need make invisible.
|
|
|
|
* @param det changed detail.
|
|
|
|
* @return list with missing nodes.
|
|
|
|
*/
|
2016-11-25 15:12:33 +01:00
|
|
|
QVector<quint32> VPiece::MissingNodes(const VPiece &det) const
|
2016-11-09 13:11:58 +01:00
|
|
|
{
|
2016-11-28 09:47:36 +01:00
|
|
|
return d->m_path.MissingNodes(det.GetPath());
|
2016-11-09 13:11:58 +01:00
|
|
|
}
|
|
|
|
|
2016-11-25 15:12:33 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<quint32> VPiece::MissingCSAPath(const VPiece &det) const
|
|
|
|
{
|
2017-01-31 17:09:18 +01:00
|
|
|
QVector<quint32> oldCSARecords;
|
2016-11-25 15:12:33 +01:00
|
|
|
for (qint32 i = 0; i < d->m_customSARecords.size(); ++i)
|
|
|
|
{
|
2017-01-31 17:09:18 +01:00
|
|
|
oldCSARecords.append(d->m_customSARecords.at(i).path);
|
2016-11-25 15:12:33 +01:00
|
|
|
}
|
|
|
|
|
2017-01-31 17:09:18 +01:00
|
|
|
QVector<quint32> newCSARecords;
|
|
|
|
for (qint32 i = 0; i < det.GetCustomSARecords().size(); ++i)
|
2016-11-25 15:12:33 +01:00
|
|
|
{
|
2017-01-31 17:09:18 +01:00
|
|
|
newCSARecords.append(det.GetCustomSARecords().at(i).path);
|
2016-11-25 15:12:33 +01:00
|
|
|
}
|
|
|
|
|
2017-01-31 17:09:18 +01:00
|
|
|
return PieceMissingNodes(oldCSARecords, newCSARecords);
|
2016-11-25 15:12:33 +01:00
|
|
|
}
|
|
|
|
|
2016-11-11 16:55:02 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-12-03 17:01:39 +01:00
|
|
|
QVector<quint32> VPiece::MissingInternalPaths(const VPiece &det) const
|
|
|
|
{
|
2017-01-31 17:09:18 +01:00
|
|
|
return PieceMissingNodes(d->m_internalPaths, det.GetInternalPaths());
|
|
|
|
}
|
2016-12-03 17:01:39 +01:00
|
|
|
|
2017-01-31 17:09:18 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<quint32> VPiece::MissingPins(const VPiece &det) const
|
|
|
|
{
|
|
|
|
return PieceMissingNodes(d->m_pins, det.GetPins());
|
2016-12-03 17:01:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-02-23 10:19:27 +01:00
|
|
|
void VPiece::SetPatternPieceData(const VPieceLabelData &data)
|
2017-01-12 14:51:08 +01:00
|
|
|
{
|
|
|
|
d->m_ppData = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief Returns full access to the pattern piece data object
|
|
|
|
* @return pattern piece data object
|
|
|
|
*/
|
2017-02-23 10:19:27 +01:00
|
|
|
VPieceLabelData &VPiece::GetPatternPieceData()
|
2017-01-12 14:51:08 +01:00
|
|
|
{
|
|
|
|
return d->m_ppData;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief Returns the read only reference to the pattern piece data object
|
|
|
|
* @return pattern piece data object
|
|
|
|
*/
|
2017-02-23 10:19:27 +01:00
|
|
|
const VPieceLabelData &VPiece::GetPatternPieceData() const
|
2017-01-12 14:51:08 +01:00
|
|
|
{
|
|
|
|
return d->m_ppData;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-02-23 10:26:25 +01:00
|
|
|
void VPiece::SetPatternInfo(const VPatternLabelData &info)
|
2017-01-12 14:51:08 +01:00
|
|
|
{
|
|
|
|
d->m_piPatternInfo = info;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief Returns full access to the pattern info geometry object
|
|
|
|
* @return pattern info geometry object
|
|
|
|
*/
|
2017-02-23 10:26:25 +01:00
|
|
|
VPatternLabelData &VPiece::GetPatternInfo()
|
2017-01-12 14:51:08 +01:00
|
|
|
{
|
|
|
|
return d->m_piPatternInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief Returns the read only reference to the pattern info geometry object
|
|
|
|
* @return pattern info geometry object
|
|
|
|
*/
|
2017-02-23 10:26:25 +01:00
|
|
|
const VPatternLabelData &VPiece::GetPatternInfo() const
|
2017-01-12 14:51:08 +01:00
|
|
|
{
|
|
|
|
return d->m_piPatternInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief VDetail::GetGrainlineGeometry full access to the grainline geometry object
|
|
|
|
* @return reference to grainline geometry object
|
|
|
|
*/
|
2017-02-23 10:33:17 +01:00
|
|
|
VGrainlineData &VPiece::GetGrainlineGeometry()
|
2017-01-12 14:51:08 +01:00
|
|
|
{
|
|
|
|
return d->m_glGrainline;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief VDetail::GetGrainlineGeometry returns the read-only reference to the grainline geometry object
|
|
|
|
* @return reference to grainline geometry object
|
|
|
|
*/
|
2017-02-23 10:33:17 +01:00
|
|
|
const VGrainlineData &VPiece::GetGrainlineGeometry() const
|
2017-01-12 14:51:08 +01:00
|
|
|
{
|
|
|
|
return d->m_glGrainline;
|
|
|
|
}
|
|
|
|
|
2017-03-30 11:26:06 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<VPieceNode> VPiece::GetUnitedPath(const VContainer *data) const
|
|
|
|
{
|
|
|
|
SCASSERT(data != nullptr)
|
|
|
|
|
|
|
|
QVector<VPieceNode> united = d->m_path.GetNodes();
|
2017-04-05 12:22:33 +02:00
|
|
|
|
|
|
|
if (IsSeamAllowance() && IsSeamAllowanceBuiltIn())
|
|
|
|
{
|
|
|
|
return united;
|
|
|
|
}
|
|
|
|
|
2017-03-30 11:26:06 +02:00
|
|
|
const QVector<CustomSARecord> records = FilterRecords(GetValidRecords());
|
|
|
|
|
|
|
|
for (int i = 0; i < records.size(); ++i)
|
|
|
|
{
|
|
|
|
if (records.at(i).includeType == PiecePathIncludeType::AsMainPath)
|
|
|
|
{
|
|
|
|
const int indexStartPoint = VPiecePath::indexOfNode(united, records.at(i).startPoint);
|
|
|
|
const int indexEndPoint = VPiecePath::indexOfNode(united, records.at(i).endPoint);
|
|
|
|
|
|
|
|
if (indexStartPoint == -1 || indexEndPoint == -1)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QVector<VPieceNode> midBefore = united.mid(0, indexStartPoint+1);
|
|
|
|
const QVector<VPieceNode> midAfter = united.mid(indexEndPoint);
|
|
|
|
|
|
|
|
QVector<VPieceNode> customNodes = data->GetPiecePath(records.at(i).path).GetNodes();
|
|
|
|
if (records.at(i).reverse)
|
|
|
|
{
|
|
|
|
customNodes = VGObject::GetReversePoints(customNodes);
|
2017-04-05 12:22:33 +02:00
|
|
|
}
|
2017-03-30 11:26:06 +02:00
|
|
|
|
2017-04-05 12:22:33 +02:00
|
|
|
for (int j = 0; j < customNodes.size(); ++j)
|
|
|
|
{
|
2017-03-30 11:26:06 +02:00
|
|
|
// Additionally reverse all curves
|
2017-04-05 12:22:33 +02:00
|
|
|
if (records.at(i).reverse)
|
|
|
|
{
|
|
|
|
// don't make a check because node point will ignore the change
|
2017-03-30 11:26:06 +02:00
|
|
|
customNodes[j].SetReverse(not customNodes.at(j).GetReverse());
|
|
|
|
}
|
2017-04-05 12:22:33 +02:00
|
|
|
|
|
|
|
// If seam allowance is built in main path user will not see a passmark provided by piece path
|
|
|
|
if (IsSeamAllowanceBuiltIn())
|
|
|
|
{
|
|
|
|
customNodes[j].SetPassmark(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
customNodes[j].SetMainPathNode(false);
|
|
|
|
}
|
2017-03-30 11:26:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
united = midBefore + customNodes + midAfter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return united;
|
|
|
|
}
|
|
|
|
|
2017-01-12 14:51:08 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-11-29 13:10:53 +01:00
|
|
|
QVector<CustomSARecord> VPiece::GetValidRecords() const
|
2016-11-11 16:55:02 +01:00
|
|
|
{
|
2016-11-29 13:10:53 +01:00
|
|
|
QVector<CustomSARecord> records;
|
|
|
|
for (int i = 0; i < d->m_customSARecords.size(); ++i)
|
2016-11-11 19:17:39 +01:00
|
|
|
{
|
2016-11-29 13:10:53 +01:00
|
|
|
const CustomSARecord &record = d->m_customSARecords.at(i);
|
2017-03-22 11:05:53 +01:00
|
|
|
const int indexStartPoint = d->m_path.indexOfNode(record.startPoint);
|
|
|
|
const int indexEndPoint = d->m_path.indexOfNode(record.endPoint);
|
2016-11-11 16:55:02 +01:00
|
|
|
|
2016-11-29 15:59:48 +01:00
|
|
|
if (record.startPoint > NULL_ID
|
|
|
|
&& record.path > NULL_ID
|
|
|
|
&& record.endPoint > NULL_ID
|
2017-03-22 11:05:53 +01:00
|
|
|
&& indexStartPoint != -1
|
|
|
|
&& not d->m_path.at(indexStartPoint).IsExcluded()
|
|
|
|
&& indexEndPoint != -1
|
2017-03-28 12:09:00 +02:00
|
|
|
&& not d->m_path.at(indexEndPoint).IsExcluded()
|
2017-03-29 13:20:55 +02:00
|
|
|
&& indexStartPoint < indexEndPoint)
|
2016-11-11 19:17:39 +01:00
|
|
|
{
|
2016-11-29 13:10:53 +01:00
|
|
|
records.append(record);
|
2016-11-11 19:17:39 +01:00
|
|
|
}
|
|
|
|
}
|
2016-11-29 13:10:53 +01:00
|
|
|
return records;
|
|
|
|
}
|
2016-11-11 19:17:39 +01:00
|
|
|
|
2017-03-29 13:18:33 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<CustomSARecord> VPiece::FilterRecords(QVector<CustomSARecord> records) const
|
|
|
|
{
|
|
|
|
if (records.size() < 2)
|
|
|
|
{
|
|
|
|
return records;
|
|
|
|
}
|
|
|
|
|
2017-03-30 12:59:10 +02:00
|
|
|
// cppcheck-suppress variableScope
|
2017-03-29 13:18:33 +02:00
|
|
|
bool foundFilter = false;// Need in case "filter" will stay empty.
|
|
|
|
CustomSARecord filter;
|
|
|
|
int startIndex = d->m_path.CountNodes()-1;
|
|
|
|
|
|
|
|
for (int i = 0; i < records.size(); ++i)
|
|
|
|
{
|
|
|
|
const int indexStartPoint = d->m_path.indexOfNode(records.at(i).startPoint);
|
|
|
|
if (indexStartPoint < startIndex)
|
|
|
|
{
|
|
|
|
startIndex = i;
|
|
|
|
filter = records.at(i);
|
2017-04-06 14:50:15 +02:00
|
|
|
// cppcheck-suppress unreadVariable
|
2017-03-29 13:18:33 +02:00
|
|
|
foundFilter = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (not foundFilter)
|
|
|
|
{
|
|
|
|
return records; // return as is
|
|
|
|
}
|
|
|
|
|
|
|
|
records.remove(startIndex);
|
|
|
|
|
|
|
|
QVector<CustomSARecord> secondRound;
|
|
|
|
for (int i = 0; i < records.size(); ++i)
|
|
|
|
{
|
|
|
|
const int indexStartPoint = d->m_path.indexOfNode(records.at(i).startPoint);
|
|
|
|
const int indexEndPoint = d->m_path.indexOfNode(filter.endPoint);
|
|
|
|
if (indexStartPoint > indexEndPoint)
|
|
|
|
{
|
|
|
|
secondRound.append(records.at(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QVector<CustomSARecord> filtered;
|
|
|
|
filtered.append(filter);
|
|
|
|
|
|
|
|
filtered += FilterRecords(secondRound);
|
|
|
|
|
|
|
|
return filtered;
|
|
|
|
}
|
|
|
|
|
2017-03-28 12:09:00 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-03-30 11:26:06 +02:00
|
|
|
QVector<VSAPoint> VPiece::GetNodeSAPoints(const QVector<VPieceNode> &path, int index, const VContainer *data) const
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
|
|
|
SCASSERT(data != nullptr)
|
|
|
|
|
2017-03-30 11:26:06 +02:00
|
|
|
if (index < 0 || index >= path.size())
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
|
|
|
return QVector<VSAPoint>();
|
|
|
|
}
|
|
|
|
|
2017-03-30 11:26:06 +02:00
|
|
|
const VPieceNode &node = path.at(index);
|
2017-03-28 12:09:00 +02:00
|
|
|
QVector<VSAPoint> points;
|
|
|
|
|
|
|
|
if (node.GetTypeTool() == Tool::NodePoint)
|
|
|
|
{
|
|
|
|
points.append(VPiecePath::PreparePointEkv(node, data));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const QSharedPointer<VAbstractCurve> curve = data->GeometricObject<VAbstractCurve>(node.GetId());
|
|
|
|
const qreal width = ToPixel(GetSAWidth(), *data->GetPatternUnit());
|
|
|
|
|
2017-03-30 11:26:06 +02:00
|
|
|
points += VPiecePath::CurveSeamAllowanceSegment(data, path, curve, index, node.GetReverse(), width);
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
|
|
|
return points;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-03-30 11:26:06 +02:00
|
|
|
bool VPiece::GetPassmarkSAPoint(const QVector<VPieceNode> &path, int index, const VContainer *data,
|
|
|
|
VSAPoint &point) const
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
|
|
|
SCASSERT(data != nullptr)
|
|
|
|
|
2017-03-30 11:26:06 +02:00
|
|
|
const QVector<VSAPoint> points = GetNodeSAPoints(path, index, data);
|
2017-03-28 12:09:00 +02:00
|
|
|
|
|
|
|
if (points.isEmpty() || points.size() > 1)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
point = points.first();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-04-25 10:42:08 +02:00
|
|
|
int VPiece::GetPassmarkPreviousSAPoints(const QVector<VPieceNode> &path, int index, const VSAPoint &passmarkSAPoint,
|
|
|
|
const VContainer *data, QVector<VSAPoint> &points) const
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
|
|
|
SCASSERT(data != nullptr)
|
|
|
|
|
2017-04-25 10:42:08 +02:00
|
|
|
const QVector<VSAPoint> saPoints = GetNodeSAPoints(path, index, data);
|
2017-03-28 12:09:00 +02:00
|
|
|
|
2017-04-25 10:42:08 +02:00
|
|
|
if (saPoints.isEmpty())
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
2017-04-25 10:42:08 +02:00
|
|
|
return -1; // Something wrong
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
|
|
|
|
2017-04-25 10:42:08 +02:00
|
|
|
int saIndex = -1;
|
2017-03-28 12:09:00 +02:00
|
|
|
bool found = false;
|
2017-04-25 10:42:08 +02:00
|
|
|
int nodeIndex = saPoints.size()-1;
|
2017-03-28 12:09:00 +02:00
|
|
|
do
|
|
|
|
{
|
2017-04-25 10:42:08 +02:00
|
|
|
const VSAPoint previous = saPoints.at(nodeIndex);
|
2017-03-28 12:09:00 +02:00
|
|
|
if (passmarkSAPoint.toPoint() != previous.toPoint())
|
|
|
|
{
|
2017-04-25 10:42:08 +02:00
|
|
|
saIndex = nodeIndex;
|
2017-03-28 12:09:00 +02:00
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
--nodeIndex;
|
|
|
|
} while (nodeIndex >= 0 && not found);
|
|
|
|
|
|
|
|
if (not found)
|
|
|
|
{
|
2017-04-25 10:42:08 +02:00
|
|
|
return -1; // Something wrong
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
2017-04-25 10:42:08 +02:00
|
|
|
points = saPoints;
|
|
|
|
return saIndex;
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-04-25 10:42:08 +02:00
|
|
|
int VPiece::GetPassmarkNextSAPoints(const QVector<VPieceNode> &path, int index, const VSAPoint &passmarkSAPoint,
|
|
|
|
const VContainer *data, QVector<VSAPoint> &points) const
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
2017-04-25 10:42:08 +02:00
|
|
|
const QVector<VSAPoint> saPoints = GetNodeSAPoints(path, index, data);
|
2017-03-28 12:09:00 +02:00
|
|
|
|
2017-04-25 10:42:08 +02:00
|
|
|
if (saPoints.isEmpty())
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
2017-04-25 10:42:08 +02:00
|
|
|
return -1; // Something wrong
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
|
|
|
|
2017-04-25 10:42:08 +02:00
|
|
|
int saIndex = -1;
|
2017-03-28 12:09:00 +02:00
|
|
|
bool found = false;
|
|
|
|
int nodeIndex = 0;
|
|
|
|
do
|
|
|
|
{
|
2017-04-25 10:42:08 +02:00
|
|
|
const VSAPoint next = saPoints.at(nodeIndex);
|
2017-03-28 12:09:00 +02:00
|
|
|
if (passmarkSAPoint.toPoint() != next.toPoint())
|
|
|
|
{
|
2017-04-25 10:42:08 +02:00
|
|
|
saIndex = nodeIndex;
|
2017-03-28 12:09:00 +02:00
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
++nodeIndex;
|
|
|
|
|
2017-04-25 10:42:08 +02:00
|
|
|
} while (nodeIndex < saPoints.size() && not found);
|
2017-03-28 12:09:00 +02:00
|
|
|
|
|
|
|
if (not found)
|
|
|
|
{
|
2017-04-25 10:42:08 +02:00
|
|
|
return -1; // Something wrong
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
2017-04-25 10:42:08 +02:00
|
|
|
points = saPoints;
|
|
|
|
return saIndex;
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool VPiece::GetSeamPassmarkSAPoint(const VSAPoint &previousSAPoint, const VSAPoint &passmarkSAPoint,
|
|
|
|
const VSAPoint &nextSAPoint, const VContainer *data, QPointF &point) const
|
|
|
|
{
|
|
|
|
SCASSERT(data != nullptr)
|
|
|
|
|
2017-04-18 20:39:13 +02:00
|
|
|
QVector<QPointF> ekvPoints;
|
2017-03-28 12:09:00 +02:00
|
|
|
const qreal width = ToPixel(GetSAWidth(), *data->GetPatternUnit());
|
2017-04-18 20:39:13 +02:00
|
|
|
if (IsEkvPointOnLine(passmarkSAPoint, previousSAPoint, nextSAPoint)) // see issue #665
|
|
|
|
{
|
|
|
|
QLineF line (passmarkSAPoint, nextSAPoint);
|
|
|
|
line.setAngle(line.angle() + 90);
|
|
|
|
line.setLength(VAbstractPiece::MaxLocalSA(passmarkSAPoint, width));
|
|
|
|
ekvPoints.append(line.p2());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ekvPoints = EkvPoint(previousSAPoint, passmarkSAPoint, nextSAPoint, passmarkSAPoint, width);
|
|
|
|
}
|
2017-03-28 12:09:00 +02:00
|
|
|
|
|
|
|
if (ekvPoints.isEmpty())
|
|
|
|
{ // Just in case
|
|
|
|
return false; // Something wrong
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ekvPoints.size() == 1 || ekvPoints.size() > 2)
|
|
|
|
{
|
|
|
|
point = ekvPoints.first();
|
|
|
|
}
|
|
|
|
else if (ekvPoints.size() == 2)
|
|
|
|
{
|
|
|
|
QLineF line = QLineF(ekvPoints.at(0), ekvPoints.at(1));
|
|
|
|
line.setLength(line.length()/2.);
|
|
|
|
point = line.p2();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-03-30 11:26:06 +02:00
|
|
|
bool VPiece::IsPassmarkVisible(const QVector<VPieceNode> &path, int passmarkIndex) const
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
2017-03-30 11:26:06 +02:00
|
|
|
if (passmarkIndex < 0 || passmarkIndex >= path.size())
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-30 11:26:06 +02:00
|
|
|
const VPieceNode &node = path.at(passmarkIndex);
|
2017-03-28 12:09:00 +02:00
|
|
|
if (node.GetTypeTool() != Tool::NodePoint || not node.IsPassmark() || node.IsExcluded())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-04-05 12:22:33 +02:00
|
|
|
if (IsSeamAllowance() && IsSeamAllowanceBuiltIn())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-03-28 12:09:00 +02:00
|
|
|
const QVector<CustomSARecord> records = FilterRecords(GetValidRecords());
|
|
|
|
if (records.isEmpty())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < records.size(); ++i)
|
|
|
|
{
|
2017-03-30 11:26:06 +02:00
|
|
|
if (records.at(i).includeType == PiecePathIncludeType::AsCustomSA)
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
2017-03-30 11:26:06 +02:00
|
|
|
const int indexStartPoint = VPiecePath::indexOfNode(path, records.at(i).startPoint);
|
|
|
|
const int indexEndPoint = VPiecePath::indexOfNode(path, records.at(i).endPoint);
|
|
|
|
if (passmarkIndex > indexStartPoint && passmarkIndex < indexEndPoint)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-03-30 11:26:06 +02:00
|
|
|
QVector<QLineF> VPiece::CreatePassmark(const QVector<VPieceNode> &path, int previousIndex, int passmarkIndex,
|
|
|
|
int nextIndex, const VContainer *data) const
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
|
|
|
SCASSERT(data != nullptr);
|
|
|
|
|
2017-03-30 11:26:06 +02:00
|
|
|
if (not IsPassmarkVisible(path, passmarkIndex))
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
|
|
|
return QVector<QLineF>();
|
|
|
|
}
|
|
|
|
|
|
|
|
VSAPoint passmarkSAPoint;
|
2017-03-30 11:26:06 +02:00
|
|
|
if (not GetPassmarkSAPoint(path, passmarkIndex, data, passmarkSAPoint))
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
|
|
|
return QVector<QLineF>(); // Something wrong
|
|
|
|
}
|
|
|
|
|
2017-04-25 10:42:08 +02:00
|
|
|
QVector<VSAPoint> previousSAPoints;
|
|
|
|
const int previousSAPointIndex = GetPassmarkPreviousSAPoints(path, previousIndex, passmarkSAPoint, data,
|
|
|
|
previousSAPoints);
|
|
|
|
if (previousSAPointIndex == -1)
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
|
|
|
return QVector<QLineF>(); // Something wrong
|
|
|
|
}
|
|
|
|
|
2017-04-25 10:42:08 +02:00
|
|
|
QVector<VSAPoint> nextSAPoints;
|
|
|
|
const int nextSAPointIndex = GetPassmarkNextSAPoints(path, nextIndex, passmarkSAPoint, data, nextSAPoints);
|
|
|
|
if (nextSAPointIndex == -1)
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
|
|
|
return QVector<QLineF>(); // Something wrong
|
|
|
|
}
|
|
|
|
|
2017-04-05 12:22:33 +02:00
|
|
|
if (not IsSeamAllowanceBuiltIn())
|
|
|
|
{
|
|
|
|
QVector<QLineF> lines;
|
2017-04-25 10:42:08 +02:00
|
|
|
lines += SAPassmark(path, previousSAPoints, previousSAPointIndex, passmarkSAPoint, nextSAPoints,
|
|
|
|
nextSAPointIndex, data, passmarkIndex);
|
|
|
|
if (qApp->Settings()->IsDoublePassmark()
|
|
|
|
&& path.at(passmarkIndex).IsMainPathNode()
|
|
|
|
&& path.at(passmarkIndex).GetPassmarkAngleType() != PassmarkAngleType::Intersection)
|
2017-04-05 12:22:33 +02:00
|
|
|
{
|
2017-04-25 10:42:08 +02:00
|
|
|
lines += BuiltInSAPassmark(path, previousSAPoints.at(previousSAPointIndex), passmarkSAPoint,
|
|
|
|
nextSAPoints.at(nextSAPointIndex), data, passmarkIndex);
|
2017-04-05 12:22:33 +02:00
|
|
|
}
|
|
|
|
return lines;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-04-25 10:42:08 +02:00
|
|
|
return BuiltInSAPassmark(path, previousSAPoints.at(previousSAPointIndex), passmarkSAPoint,
|
|
|
|
nextSAPoints.at(nextSAPointIndex), data, passmarkIndex);
|
2017-04-05 12:22:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-04-25 10:42:08 +02:00
|
|
|
QVector<QLineF> VPiece::SAPassmark(const QVector<VPieceNode> &path, const QVector<VSAPoint> &previousSAPoints,
|
|
|
|
const int previousSAPointIndex, const VSAPoint &passmarkSAPoint,
|
|
|
|
const QVector<VSAPoint> &nextSAPoints, const int nextSAPointIndex,
|
|
|
|
const VContainer *data, int passmarkIndex) const
|
2017-04-05 12:22:33 +02:00
|
|
|
{
|
2017-04-25 10:42:08 +02:00
|
|
|
const VSAPoint &previousSAPoint = previousSAPoints.at(previousSAPointIndex);
|
|
|
|
const VSAPoint &nextSAPoint = nextSAPoints.at(nextSAPointIndex);
|
|
|
|
|
2017-03-28 12:09:00 +02:00
|
|
|
QPointF seamPassmarkSAPoint;
|
|
|
|
if (not GetSeamPassmarkSAPoint(previousSAPoint, passmarkSAPoint, nextSAPoint, data, seamPassmarkSAPoint))
|
|
|
|
{
|
|
|
|
return QVector<QLineF>(); // Something wrong
|
|
|
|
}
|
|
|
|
|
|
|
|
const qreal width = ToPixel(GetSAWidth(), *data->GetPatternUnit());
|
|
|
|
const QLineF bigLine1 = ParallelLine(previousSAPoint, passmarkSAPoint, width );
|
|
|
|
const QLineF bigLine2 = ParallelLine(passmarkSAPoint, nextSAPoint, width );
|
|
|
|
|
|
|
|
QVector<QLineF> passmarksLines;
|
|
|
|
|
2017-04-05 12:22:33 +02:00
|
|
|
qreal passmarkLength = VAbstractPiece::MaxLocalSA(passmarkSAPoint, width) * passmarkFactor;
|
|
|
|
passmarkLength = qMin(passmarkLength, maxPassmarkLength);
|
2017-03-30 11:26:06 +02:00
|
|
|
const VPieceNode &node = path.at(passmarkIndex);
|
2017-03-28 12:09:00 +02:00
|
|
|
if (node.GetPassmarkAngleType() == PassmarkAngleType::Straightforward)
|
|
|
|
{
|
|
|
|
QLineF line = QLineF(seamPassmarkSAPoint, passmarkSAPoint);
|
|
|
|
line.setLength(passmarkLength);
|
2017-04-05 12:22:33 +02:00
|
|
|
passmarksLines += CreatePassmarkLines(node.GetPassmarkLineType(), node.GetPassmarkAngleType(), line);
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
2017-04-25 10:42:08 +02:00
|
|
|
else if (node.GetPassmarkAngleType() == PassmarkAngleType::Bisector)
|
2017-03-28 12:09:00 +02:00
|
|
|
{
|
|
|
|
QLineF edge1 = QLineF(seamPassmarkSAPoint, bigLine1.p1());
|
|
|
|
QLineF edge2 = QLineF(seamPassmarkSAPoint, bigLine2.p2());
|
|
|
|
|
|
|
|
edge1.setAngle(edge1.angle() + edge1.angleTo(edge2)/2.);
|
|
|
|
edge1.setLength(passmarkLength);
|
2017-04-05 12:22:33 +02:00
|
|
|
|
|
|
|
passmarksLines += CreatePassmarkLines(node.GetPassmarkLineType(), node.GetPassmarkAngleType(), edge1);
|
2017-03-28 12:09:00 +02:00
|
|
|
}
|
2017-04-25 10:42:08 +02:00
|
|
|
else if (node.GetPassmarkAngleType() == PassmarkAngleType::Intersection)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
// first passmark
|
|
|
|
QPointF p;
|
|
|
|
QLineF line(previousSAPoint, passmarkSAPoint);
|
|
|
|
|
|
|
|
if (nextSAPoints.size() < 2)
|
|
|
|
{
|
|
|
|
const QLineF::IntersectType type = line.intersect(bigLine2, &p);
|
|
|
|
if (type == QLineF::NoIntersection)
|
|
|
|
{
|
|
|
|
p = passmarkSAPoint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
line.setLength(line.length() + passmarkSAPoint.GetSAAfter(width)*2);
|
|
|
|
|
|
|
|
QVector<VSAPoint> vector;
|
|
|
|
vector << previousSAPoints;
|
|
|
|
vector.append(passmarkSAPoint);
|
|
|
|
vector << nextSAPoints;
|
|
|
|
|
|
|
|
const QVector<QPointF> curvePoints = ParallelCurve(vector, width);
|
|
|
|
const QVector<QPointF> intersections = VAbstractCurve::CurveIntersectLine(curvePoints, line);
|
|
|
|
|
|
|
|
if (intersections.isEmpty())
|
|
|
|
{
|
|
|
|
return QVector<QLineF>(); // Something wrong
|
|
|
|
}
|
|
|
|
|
|
|
|
p = intersections.first();
|
|
|
|
}
|
|
|
|
|
|
|
|
line = QLineF(p, passmarkSAPoint);
|
|
|
|
line.setLength(qMin(passmarkSAPoint.GetSAAfter(width) * passmarkFactor, maxPassmarkLength));
|
|
|
|
|
|
|
|
passmarksLines += CreatePassmarkLines(node.GetPassmarkLineType(), node.GetPassmarkAngleType(), line);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
// second passmark
|
|
|
|
QPointF p;
|
|
|
|
QLineF line(nextSAPoint, passmarkSAPoint);
|
|
|
|
|
|
|
|
if (previousSAPoints.size() < 2)
|
|
|
|
{
|
|
|
|
const QLineF::IntersectType type = line.intersect(bigLine1, &p);
|
|
|
|
if (type == QLineF::NoIntersection)
|
|
|
|
{
|
|
|
|
p = passmarkSAPoint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
line.setLength(line.length() + passmarkSAPoint.GetSABefore(width)*2);
|
|
|
|
|
|
|
|
QVector<VSAPoint> vector;
|
|
|
|
vector << previousSAPoints;
|
|
|
|
vector.append(passmarkSAPoint);
|
|
|
|
vector << nextSAPoints;
|
|
|
|
|
|
|
|
const QVector<QPointF> curvePoints = ParallelCurve(vector, width);
|
|
|
|
const QVector<QPointF> intersections = VAbstractCurve::CurveIntersectLine(curvePoints, line);
|
|
|
|
|
|
|
|
if (intersections.isEmpty())
|
|
|
|
{
|
|
|
|
return QVector<QLineF>(); // Something wrong
|
|
|
|
}
|
|
|
|
|
|
|
|
p = intersections.last();
|
|
|
|
}
|
|
|
|
|
|
|
|
line = QLineF(p, passmarkSAPoint);
|
|
|
|
line.setLength(qMin(passmarkSAPoint.GetSABefore(width) * passmarkFactor, maxPassmarkLength));
|
|
|
|
|
|
|
|
passmarksLines += CreatePassmarkLines(node.GetPassmarkLineType(), node.GetPassmarkAngleType(), line);
|
|
|
|
}
|
|
|
|
}
|
2017-03-28 12:09:00 +02:00
|
|
|
|
|
|
|
return passmarksLines;
|
|
|
|
}
|
|
|
|
|
2017-04-05 12:22:33 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<QLineF> VPiece::BuiltInSAPassmark(const QVector<VPieceNode> &path, const VSAPoint &previousSAPoint,
|
|
|
|
const VSAPoint &passmarkSAPoint, const VSAPoint &nextSAPoint,
|
|
|
|
const VContainer *data, int passmarkIndex) const
|
|
|
|
{
|
|
|
|
QVector<QLineF> passmarksLines;
|
|
|
|
|
|
|
|
const qreal width = ToPixel(GetSAWidth(), *data->GetPatternUnit());
|
|
|
|
qreal passmarkLength = VAbstractPiece::MaxLocalSA(passmarkSAPoint, width) * passmarkFactor;
|
|
|
|
passmarkLength = qMin(passmarkLength, maxPassmarkLength);
|
|
|
|
|
|
|
|
QLineF edge1 = QLineF(passmarkSAPoint, previousSAPoint);
|
|
|
|
QLineF edge2 = QLineF(passmarkSAPoint, nextSAPoint);
|
|
|
|
|
|
|
|
edge1.setAngle(edge1.angle() + edge1.angleTo(edge2)/2.);
|
|
|
|
edge1.setLength(passmarkLength);
|
|
|
|
|
|
|
|
const VPieceNode &node = path.at(passmarkIndex);
|
|
|
|
passmarksLines += CreatePassmarkLines(node.GetPassmarkLineType(), node.GetPassmarkAngleType(), edge1);
|
|
|
|
|
|
|
|
return passmarksLines;
|
|
|
|
}
|
|
|
|
|
2016-11-29 13:10:53 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int VPiece::IsCSAStart(const QVector<CustomSARecord> &records, quint32 id)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < records.size(); ++i)
|
|
|
|
{
|
|
|
|
if (records.at(i).startPoint == id)
|
2016-11-11 19:17:39 +01:00
|
|
|
{
|
2016-11-29 13:10:53 +01:00
|
|
|
return i;
|
2016-11-11 19:17:39 +01:00
|
|
|
}
|
2016-11-11 16:55:02 +01:00
|
|
|
}
|
2016-11-29 13:10:53 +01:00
|
|
|
|
|
|
|
return -1;
|
2016-11-11 16:55:02 +01:00
|
|
|
}
|