2019-09-03 16:46:09 +02:00
|
|
|
|
/************************************************************************
|
2016-11-03 19:15:53 +01:00
|
|
|
|
**
|
|
|
|
|
** @file
|
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
|
** @date 3 11, 2016
|
|
|
|
|
**
|
|
|
|
|
** @brief
|
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2016-11-03 19:15:53 +01:00
|
|
|
|
** 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 "vabstractpiece.h"
|
2016-11-09 14:53:22 +01:00
|
|
|
|
#include "vabstractpiece_p.h"
|
2016-11-11 19:15:06 +01:00
|
|
|
|
#include "../vmisc/vabstractapplication.h"
|
2016-11-19 17:27:06 +01:00
|
|
|
|
#include "../vgeometry/vpointf.h"
|
2018-10-22 13:43:06 +02:00
|
|
|
|
#include "../ifc/exception/vexception.h"
|
2019-01-28 19:35:10 +01:00
|
|
|
|
#include "../vmisc/vmath.h"
|
|
|
|
|
#include "../vpatterndb/floatItemData/vgrainlinedata.h"
|
|
|
|
|
#include "../vpatterndb/vcontainer.h"
|
|
|
|
|
#include "../vpatterndb/calculator.h"
|
2019-08-29 14:01:27 +02:00
|
|
|
|
#include "testpath.h"
|
2019-11-03 09:01:32 +01:00
|
|
|
|
#include "vrawsapoint.h"
|
2016-11-03 19:15:53 +01:00
|
|
|
|
|
|
|
|
|
#include <QLineF>
|
|
|
|
|
#include <QSet>
|
|
|
|
|
#include <QVector>
|
2017-01-11 13:53:16 +01:00
|
|
|
|
#include <QPainterPath>
|
2018-09-19 14:16:29 +02:00
|
|
|
|
#include <QTemporaryFile>
|
2019-08-07 16:53:18 +02:00
|
|
|
|
#include <QJsonObject>
|
|
|
|
|
#include <QJsonArray>
|
|
|
|
|
#include <QJsonDocument>
|
2016-11-03 19:15:53 +01:00
|
|
|
|
|
2019-07-01 11:26:08 +02:00
|
|
|
|
const quint32 VAbstractPieceData::streamHeader = 0x05CDD73A; // CRC-32Q string "VAbstractPieceData"
|
2019-07-19 09:45:57 +02:00
|
|
|
|
const quint16 VAbstractPieceData::classVersion = 2;
|
2019-07-01 11:26:08 +02:00
|
|
|
|
|
2018-09-13 15:46:04 +02:00
|
|
|
|
const qreal maxL = 2.5;
|
|
|
|
|
|
2019-01-09 16:46:02 +01:00
|
|
|
|
const qreal VSAPoint::passmarkFactor = 0.5;
|
|
|
|
|
const qreal VSAPoint::maxPassmarkLength = (10/*mm*/ / 25.4) * PrintDPI;
|
2019-11-03 08:30:36 +01:00
|
|
|
|
const qreal VSAPoint::minSAWidth = ToPixel(0.01, Unit::Mm);
|
2019-01-09 16:46:02 +01:00
|
|
|
|
|
2018-09-13 15:46:04 +02:00
|
|
|
|
namespace
|
|
|
|
|
{
|
2019-08-31 08:32:43 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
inline bool IsSameDirection(QPointF p1, QPointF p2, QPointF px)
|
|
|
|
|
{
|
|
|
|
|
return qAbs(QLineF(p1, p2).angle() - QLineF(p1, px).angle()) < 0.001;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-07 11:25:22 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-09-13 15:46:04 +02:00
|
|
|
|
// Do we create a point outside of a path?
|
2018-09-19 11:24:24 +02:00
|
|
|
|
inline bool IsOutsidePoint(QPointF p1, QPointF p2, QPointF px)
|
2018-09-13 15:46:04 +02:00
|
|
|
|
{
|
2019-08-31 08:32:43 +02:00
|
|
|
|
QLineF seg1(p1, p2);
|
|
|
|
|
QLineF seg2(p1, px);
|
|
|
|
|
|
|
|
|
|
return IsSameDirection(p1, p2, px) && seg2.length() >= seg1.length();
|
2018-09-13 15:46:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-17 14:06:46 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-09-13 16:16:40 +02:00
|
|
|
|
Q_DECL_CONSTEXPR qreal PointPosition(const QPointF &p, const QLineF &line)
|
2017-12-17 14:06:46 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
return (line.p2().x() - line.p1().x()) * (p.y() - line.p1().y()) -
|
|
|
|
|
(line.p2().y() - line.p1().y()) * (p.x() - line.p1().x());
|
2017-12-17 14:06:46 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-10 11:53:02 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> AngleByLength(QVector<VRawSAPoint> points, QPointF p1, QPointF p2, QPointF p3,
|
|
|
|
|
const QLineF &bigLine1, QPointF sp2, const QLineF &bigLine2, const VSAPoint &p,
|
|
|
|
|
qreal width, bool *needRollback = nullptr)
|
2016-11-10 11:53:02 +01:00
|
|
|
|
{
|
2019-01-07 17:20:36 +01:00
|
|
|
|
if (needRollback != nullptr)
|
|
|
|
|
{
|
2019-01-09 16:46:02 +01:00
|
|
|
|
*needRollback = false;
|
2019-01-07 17:20:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
const QPointF sp1 = bigLine1.p1();
|
|
|
|
|
const QPointF sp3 = bigLine2.p2();
|
2018-09-13 16:31:14 +02:00
|
|
|
|
const qreal localWidth = p.MaxLocalSA(width);
|
2016-11-10 11:53:02 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if (IsOutsidePoint(bigLine1.p1(), bigLine1.p2(), sp2) && IsOutsidePoint(bigLine2.p2(), bigLine2.p1(), sp2) )
|
|
|
|
|
{
|
|
|
|
|
QLineF line(p2, sp2);
|
|
|
|
|
const qreal length = line.length();
|
|
|
|
|
if (length > localWidth*maxL)
|
|
|
|
|
{ // Cutting too long acut angle
|
|
|
|
|
line.setLength(localWidth);
|
|
|
|
|
QLineF cutLine(line.p2(), sp2); // Cut line is a perpendicular
|
2018-12-23 17:41:51 +01:00
|
|
|
|
cutLine.setLength(length); // Decided to take this length
|
2016-11-10 11:53:02 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
// We do not check intersection type because intersection must alwayse exist
|
|
|
|
|
QPointF px;
|
|
|
|
|
cutLine.setAngle(cutLine.angle()+90);
|
|
|
|
|
QLineF::IntersectType type = QLineF(sp1, sp2).intersect(cutLine, &px);
|
|
|
|
|
if (type == QLineF::NoIntersection)
|
|
|
|
|
{
|
|
|
|
|
qDebug()<<"Couldn't find intersection with cut line.";
|
|
|
|
|
}
|
|
|
|
|
points.append(px);
|
2017-04-05 12:22:33 +02:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
cutLine.setAngle(cutLine.angle()-180);
|
|
|
|
|
type = QLineF(sp2, sp3).intersect(cutLine, &px);
|
|
|
|
|
if (type == QLineF::NoIntersection)
|
|
|
|
|
{
|
|
|
|
|
qDebug()<<"Couldn't find intersection with cut line.";
|
|
|
|
|
}
|
|
|
|
|
points.append(px);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{// The point just fine
|
|
|
|
|
points.append(sp2);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
QLineF edge1(p2, p1);
|
|
|
|
|
QLineF edge2(p2, p3);
|
|
|
|
|
const qreal angle = edge1.angleTo(edge2);
|
|
|
|
|
|
2019-11-03 09:13:02 +01:00
|
|
|
|
if (angle > 180 && p.GetAngleType() != PieceNodeAngle::ByLengthCurve)
|
2018-09-13 16:16:40 +02:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
QLineF loop(sp2, bigLine1.p1());
|
|
|
|
|
loop.setLength(accuracyPointOnLine*2.);
|
|
|
|
|
points.append(loop.p2());
|
|
|
|
|
points.append(sp2);
|
2019-09-01 12:01:10 +02:00
|
|
|
|
|
2019-09-03 16:46:09 +02:00
|
|
|
|
loop = QLineF(bigLine1.p1(), sp2);
|
2019-11-03 09:13:02 +01:00
|
|
|
|
loop.setLength(loop.length() + localWidth);
|
|
|
|
|
VRawSAPoint loopPoint(loop.p2());
|
|
|
|
|
loopPoint.SetLoopPoint(true);
|
|
|
|
|
points.append(loopPoint);
|
2019-09-03 16:46:09 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (not IsOutsidePoint(bigLine1.p1(), bigLine1.p2(), sp2))
|
|
|
|
|
{
|
|
|
|
|
if (p.GetAngleType() != PieceNodeAngle::ByLengthCurve)
|
2019-09-01 12:01:10 +02:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
bool success = false;
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> temp = points;
|
2019-09-03 16:46:09 +02:00
|
|
|
|
temp.append(bigLine1.p2());
|
|
|
|
|
temp = VAbstractPiece::RollbackSeamAllowance(temp, bigLine2, &success);
|
|
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
|
{
|
|
|
|
|
points = temp;
|
|
|
|
|
}
|
2019-09-01 12:01:10 +02:00
|
|
|
|
|
2019-09-03 16:46:09 +02:00
|
|
|
|
if (needRollback != nullptr)
|
|
|
|
|
{
|
|
|
|
|
*needRollback = not success;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
2019-01-07 17:20:36 +01:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
points.append(sp2);
|
2019-01-07 17:20:36 +01:00
|
|
|
|
}
|
2018-10-19 15:54:06 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
if (p.GetAngleType() != PieceNodeAngle::ByLengthCurve)
|
|
|
|
|
{
|
|
|
|
|
// Need to create artificial loop
|
|
|
|
|
QLineF loop1(sp2, sp1);
|
|
|
|
|
loop1.setLength(loop1.length()*0.2);
|
2017-04-05 12:22:33 +02:00
|
|
|
|
|
2019-09-03 16:46:09 +02:00
|
|
|
|
points.append(loop1.p2()); // Need for the main path rule
|
2018-09-13 16:16:40 +02:00
|
|
|
|
|
2019-09-03 16:46:09 +02:00
|
|
|
|
loop1.setAngle(loop1.angle() + 180);
|
|
|
|
|
loop1.setLength(localWidth);
|
|
|
|
|
points.append(loop1.p2());
|
|
|
|
|
points.append(bigLine2.p1());
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
points.append(sp2);
|
|
|
|
|
}
|
2018-10-17 17:12:39 +02:00
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return points;
|
2017-05-16 14:16:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> AngleByIntersection(const QVector<VRawSAPoint> &points, QPointF p1, QPointF p2, QPointF p3,
|
|
|
|
|
const QLineF &bigLine1, QPointF sp2, const QLineF &bigLine2,
|
|
|
|
|
const VSAPoint &p, qreal width, bool *needRollback = nullptr)
|
2017-05-16 14:16:50 +02:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
{
|
|
|
|
|
QLineF edge1(p2, p1);
|
|
|
|
|
QLineF edge2(p2, p3);
|
|
|
|
|
const qreal angle = edge1.angleTo(edge2);
|
|
|
|
|
|
|
|
|
|
if (angle > 180)
|
|
|
|
|
{
|
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-07 17:20:36 +01:00
|
|
|
|
if (needRollback != nullptr)
|
|
|
|
|
{
|
2019-01-09 16:46:02 +01:00
|
|
|
|
*needRollback = false;
|
2019-01-07 17:20:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-13 16:31:14 +02:00
|
|
|
|
const qreal localWidth = p.MaxLocalSA(width);
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> pointsIntr = points;
|
2017-05-16 14:16:50 +02:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
// First point
|
|
|
|
|
QLineF edge2(p2, p3);
|
2016-11-10 11:53:02 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
QPointF px;
|
|
|
|
|
QLineF::IntersectType type = edge2.intersect(bigLine1, &px);
|
|
|
|
|
if (type == QLineF::NoIntersection)
|
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (IsOutsidePoint(bigLine1.p1(), bigLine1.p2(), px))
|
|
|
|
|
{
|
|
|
|
|
if (QLineF(p2, px).length() > localWidth*maxL)
|
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
pointsIntr.append(px);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{// Because artificial loop can lead to wrong clipping we must rollback current seam allowance points
|
|
|
|
|
bool success = false;
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> temp = pointsIntr;
|
2019-09-10 12:17:06 +02:00
|
|
|
|
temp.append(bigLine1.p2());
|
|
|
|
|
temp = VAbstractPiece::RollbackSeamAllowance(temp, edge2, &success);
|
|
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
|
{
|
|
|
|
|
pointsIntr = temp;
|
|
|
|
|
}
|
2019-01-09 16:46:02 +01:00
|
|
|
|
|
|
|
|
|
if (needRollback != nullptr)
|
|
|
|
|
{
|
2019-09-01 12:01:10 +02:00
|
|
|
|
*needRollback = not success;
|
2019-01-09 16:46:02 +01:00
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Second point
|
|
|
|
|
QLineF edge1(p1, p2);
|
|
|
|
|
|
|
|
|
|
type = edge1.intersect(bigLine2, &px);
|
|
|
|
|
if (type == QLineF::NoIntersection)
|
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (IsOutsidePoint(bigLine2.p2(), bigLine2.p1(), px))
|
|
|
|
|
{
|
|
|
|
|
pointsIntr.append(px);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-08-31 14:30:07 +02:00
|
|
|
|
pointsIntr.append(px);
|
2019-08-07 11:25:22 +02:00
|
|
|
|
|
2019-08-31 14:30:07 +02:00
|
|
|
|
QLineF allowance(p2, px);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
allowance.setLength(allowance.length() + localWidth * 3.);
|
|
|
|
|
pointsIntr.append(allowance.p2());
|
2019-08-31 14:30:07 +02:00
|
|
|
|
pointsIntr.append(bigLine2.p1());
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return pointsIntr;
|
2016-11-10 11:53:02 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-10 13:06:09 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> AngleByFirstSymmetry(const QVector<VRawSAPoint> &points, QPointF p1, QPointF p2, QPointF p3,
|
|
|
|
|
const QLineF &bigLine1, QPointF sp2, const QLineF &bigLine2,
|
|
|
|
|
const VSAPoint &p, qreal width, bool *needRollback = nullptr)
|
2016-11-10 13:06:09 +01:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
{
|
|
|
|
|
QLineF edge1(p2, p1);
|
|
|
|
|
QLineF edge2(p2, p3);
|
|
|
|
|
const qreal angle = edge1.angleTo(edge2);
|
|
|
|
|
|
|
|
|
|
if (angle > 180)
|
|
|
|
|
{
|
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-07 17:20:36 +01:00
|
|
|
|
if (needRollback != nullptr)
|
|
|
|
|
{
|
2019-01-09 16:46:02 +01:00
|
|
|
|
*needRollback = false;
|
2019-01-07 17:20:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-13 15:32:38 +01:00
|
|
|
|
const QLineF axis = QLineF(p1, p2);
|
|
|
|
|
|
|
|
|
|
QLineF sEdge(VPointF::FlipPF(axis, bigLine2.p1()), VPointF::FlipPF(axis, bigLine2.p2()));
|
2018-09-13 16:16:40 +02:00
|
|
|
|
|
2019-02-12 13:51:21 +01:00
|
|
|
|
QPointF px1;
|
|
|
|
|
QLineF::IntersectType type = sEdge.intersect(bigLine1, &px1);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if (type == QLineF::NoIntersection)
|
2016-11-10 13:06:09 +01:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
2016-11-10 13:06:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-12 13:51:21 +01:00
|
|
|
|
QPointF px2;
|
|
|
|
|
type = sEdge.intersect(bigLine2, &px2);
|
|
|
|
|
if (type == QLineF::NoIntersection)
|
2016-11-10 13:06:09 +01:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
2019-01-09 16:46:02 +01:00
|
|
|
|
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> pointsIntr = points;
|
2019-02-12 13:51:21 +01:00
|
|
|
|
|
2019-02-13 15:32:38 +01:00
|
|
|
|
if (IsOutsidePoint(bigLine1.p1(), bigLine1.p2(), px1))
|
2019-02-12 13:51:21 +01:00
|
|
|
|
{
|
2019-02-13 15:32:38 +01:00
|
|
|
|
pointsIntr.append(px1);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{// Because artificial loop can lead to wrong clipping we must rollback current seam allowance points
|
|
|
|
|
bool success = false;
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> temp = pointsIntr;
|
2019-09-01 12:01:10 +02:00
|
|
|
|
temp.append(bigLine1.p2());
|
|
|
|
|
temp = VAbstractPiece::RollbackSeamAllowance(temp, sEdge, &success);
|
|
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
|
{
|
|
|
|
|
pointsIntr = temp;
|
|
|
|
|
}
|
2016-11-10 13:06:09 +01:00
|
|
|
|
|
2019-02-13 15:32:38 +01:00
|
|
|
|
if (needRollback != nullptr)
|
2019-02-12 13:51:21 +01:00
|
|
|
|
{
|
2019-09-01 12:01:10 +02:00
|
|
|
|
*needRollback = not success;
|
2016-11-10 13:06:09 +01:00
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
2019-02-13 15:32:38 +01:00
|
|
|
|
|
|
|
|
|
if (IsOutsidePoint(bigLine2.p2(), bigLine2.p1(), px2))
|
|
|
|
|
{
|
|
|
|
|
pointsIntr.append(px2);
|
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
2019-02-13 15:32:38 +01:00
|
|
|
|
QLineF allowance(px2, p2);
|
|
|
|
|
allowance.setAngle(allowance.angle() + 90);
|
2019-10-23 10:24:59 +02:00
|
|
|
|
pointsIntr.append(px2);
|
2019-02-13 15:32:38 +01:00
|
|
|
|
pointsIntr.append(allowance.p2());
|
|
|
|
|
pointsIntr.append(bigLine2.p1());
|
2016-11-10 13:06:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
return pointsIntr;
|
2016-11-10 13:06:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-03 19:15:53 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> AngleBySecondSymmetry(const QVector<VRawSAPoint> &points, QPointF p1, QPointF p2, QPointF p3,
|
|
|
|
|
const QLineF &bigLine1, QPointF sp2, const QLineF &bigLine2,
|
|
|
|
|
const VSAPoint &p, qreal width, bool *needRollback = nullptr)
|
2016-11-03 19:15:53 +01:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
{
|
|
|
|
|
QLineF edge1(p2, p1);
|
|
|
|
|
QLineF edge2(p2, p3);
|
|
|
|
|
const qreal angle = edge1.angleTo(edge2);
|
|
|
|
|
|
|
|
|
|
if (angle > 180)
|
|
|
|
|
{
|
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-07 17:20:36 +01:00
|
|
|
|
if (needRollback != nullptr)
|
|
|
|
|
{
|
2019-01-09 16:46:02 +01:00
|
|
|
|
*needRollback = false;
|
2019-01-07 17:20:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-13 15:32:38 +01:00
|
|
|
|
const QLineF axis = QLineF(p3, p2);
|
|
|
|
|
|
|
|
|
|
QLineF sEdge(VPointF::FlipPF(axis, bigLine1.p1()), VPointF::FlipPF(axis, bigLine1.p2()));
|
2018-09-13 16:16:40 +02:00
|
|
|
|
|
2019-02-12 13:51:21 +01:00
|
|
|
|
QPointF px1;
|
|
|
|
|
QLineF::IntersectType type = sEdge.intersect(bigLine1, &px1);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if (type == QLineF::NoIntersection)
|
2016-11-03 19:15:53 +01:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-12 13:51:21 +01:00
|
|
|
|
QPointF px2;
|
|
|
|
|
type = sEdge.intersect(bigLine2, &px2);
|
|
|
|
|
if (type == QLineF::NoIntersection)
|
2018-09-13 16:16:40 +02:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
2016-11-03 19:15:53 +01:00
|
|
|
|
}
|
2019-01-09 16:46:02 +01:00
|
|
|
|
|
2019-02-12 13:51:21 +01:00
|
|
|
|
const qreal localWidth = p.MaxLocalSA(width);
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> pointsIntr = points;
|
2019-02-12 13:51:21 +01:00
|
|
|
|
|
2019-02-13 15:32:38 +01:00
|
|
|
|
if (IsOutsidePoint(bigLine1.p1(), bigLine1.p2(), px1))
|
2019-02-12 13:51:21 +01:00
|
|
|
|
{
|
2019-02-13 15:32:38 +01:00
|
|
|
|
pointsIntr.append(px1);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{// Because artificial loop can lead to wrong clipping we must rollback current seam allowance points
|
|
|
|
|
bool success = false;
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> temp = pointsIntr;
|
2019-09-01 12:01:10 +02:00
|
|
|
|
temp.append(bigLine1.p2());
|
|
|
|
|
temp = VAbstractPiece::RollbackSeamAllowance(temp, sEdge, &success);
|
|
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
|
{
|
|
|
|
|
pointsIntr = temp;
|
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
|
2019-02-13 15:32:38 +01:00
|
|
|
|
if (needRollback != nullptr)
|
2018-09-13 16:16:40 +02:00
|
|
|
|
{
|
2019-09-01 12:01:10 +02:00
|
|
|
|
*needRollback = not success;
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
2019-02-13 15:32:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (IsOutsidePoint(bigLine2.p2(), bigLine2.p1(), px2))
|
|
|
|
|
{
|
2019-09-01 12:01:10 +02:00
|
|
|
|
pointsIntr.append(px2);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-02-13 15:32:38 +01:00
|
|
|
|
QLineF allowance(p2, px2);
|
|
|
|
|
allowance.setLength(p.GetSAAfter(width)*0.98);
|
|
|
|
|
pointsIntr.append(allowance.p2());
|
|
|
|
|
allowance.setLength(allowance.length() + localWidth * 3.);
|
|
|
|
|
pointsIntr.append(allowance.p2());
|
2019-09-01 12:01:10 +02:00
|
|
|
|
pointsIntr.append(bigLine2.p1());
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return pointsIntr;
|
2016-11-03 19:15:53 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> AngleByFirstRightAngle(const QVector<VRawSAPoint> &points, QPointF p1, QPointF p2, QPointF p3,
|
|
|
|
|
const QLineF &bigLine1, QPointF sp2, const QLineF &bigLine2,
|
|
|
|
|
const VSAPoint &p, qreal width, bool *needRollback = nullptr)
|
2016-11-03 19:15:53 +01:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
{
|
|
|
|
|
QLineF edge1(p2, p1);
|
|
|
|
|
QLineF edge2(p2, p3);
|
|
|
|
|
const qreal angle = edge1.angleTo(edge2);
|
|
|
|
|
|
2019-09-06 10:12:01 +02:00
|
|
|
|
if (angle > 270)
|
2019-09-03 16:46:09 +02:00
|
|
|
|
{
|
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-13 16:31:14 +02:00
|
|
|
|
const qreal localWidth = p.MaxLocalSA(width);
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> pointsRA = points;
|
2018-09-13 16:16:40 +02:00
|
|
|
|
QLineF edge(p1, p2);
|
|
|
|
|
|
|
|
|
|
QPointF px;
|
|
|
|
|
QLineF::IntersectType type = edge.intersect(bigLine2, &px);
|
|
|
|
|
if (type == QLineF::NoIntersection)
|
2016-11-03 19:15:53 +01:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
2016-11-03 19:15:53 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
QLineF seam(px, p1);
|
|
|
|
|
seam.setAngle(seam.angle()-90);
|
|
|
|
|
seam.setLength(p.GetSABefore(width));
|
2016-11-03 19:15:53 +01:00
|
|
|
|
|
2019-09-06 10:12:01 +02:00
|
|
|
|
if (IsOutsidePoint(bigLine2.p2(), bigLine2.p1(), seam.p1()) && IsSameDirection(p1, p2, px))
|
2016-11-03 19:15:53 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if (QLineF(p2, px).length() > localWidth*maxL)
|
2016-11-03 19:15:53 +01:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
2016-11-03 19:15:53 +01:00
|
|
|
|
}
|
2019-09-06 10:12:01 +02:00
|
|
|
|
pointsRA.append(seam.p2());
|
2018-09-13 16:16:40 +02:00
|
|
|
|
pointsRA.append(seam.p1());
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-09-06 10:12:01 +02:00
|
|
|
|
QLineF edge1(p2, p1);
|
|
|
|
|
QLineF edge2(p2, p3);
|
|
|
|
|
const qreal angle = edge1.angleTo(edge2);
|
|
|
|
|
|
|
|
|
|
if (angle > 180)
|
|
|
|
|
{
|
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pointsRA.append(seam.p2());
|
2016-11-03 19:15:53 +01:00
|
|
|
|
|
2019-09-06 10:12:01 +02:00
|
|
|
|
QLineF loopLine(px, sp2);
|
|
|
|
|
const qreal length = loopLine.length()*0.98;
|
|
|
|
|
loopLine.setLength(length);
|
2016-11-03 19:15:53 +01:00
|
|
|
|
|
2019-09-06 10:12:01 +02:00
|
|
|
|
QLineF tmp(seam.p2(), seam.p1());
|
|
|
|
|
tmp.setLength(tmp.length()+length);
|
|
|
|
|
|
|
|
|
|
pointsRA.append(tmp.p2());
|
|
|
|
|
pointsRA.append(loopLine.p2());
|
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
2016-11-03 19:15:53 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
return pointsRA;
|
|
|
|
|
}
|
2016-11-03 19:15:53 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> AngleBySecondRightAngle(QVector<VRawSAPoint> points, QPointF p1, QPointF p2, QPointF p3,
|
|
|
|
|
const QLineF &bigLine1, QPointF sp2, const QLineF &bigLine2,
|
|
|
|
|
const VSAPoint &p, qreal width, bool *needRollback = nullptr)
|
2018-09-13 16:16:40 +02:00
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
{
|
|
|
|
|
QLineF edge1(p2, p1);
|
|
|
|
|
QLineF edge2(p2, p3);
|
|
|
|
|
const qreal angle = edge1.angleTo(edge2);
|
|
|
|
|
|
2019-09-06 10:12:01 +02:00
|
|
|
|
if (angle > 270)
|
2019-09-03 16:46:09 +02:00
|
|
|
|
{
|
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-07 17:20:36 +01:00
|
|
|
|
if (needRollback != nullptr)
|
|
|
|
|
{
|
2019-01-09 16:46:02 +01:00
|
|
|
|
*needRollback = false;
|
2019-01-07 17:20:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-13 16:31:14 +02:00
|
|
|
|
const qreal localWidth = p.MaxLocalSA(width);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
QLineF edge(p2, p3);
|
2016-11-03 19:15:53 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
QPointF px;
|
|
|
|
|
QLineF::IntersectType type = edge.intersect(bigLine1, &px);
|
|
|
|
|
if (type == QLineF::NoIntersection)
|
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
2016-11-03 19:15:53 +01:00
|
|
|
|
|
2019-09-06 10:12:01 +02:00
|
|
|
|
if (IsOutsidePoint(bigLine1.p1(), bigLine1.p2(), px) && IsSameDirection(p3, p2, px))
|
2018-09-13 16:16:40 +02:00
|
|
|
|
{
|
|
|
|
|
if (QLineF(p2, px).length() > localWidth*maxL)
|
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
2016-11-03 19:15:53 +01:00
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
points.append(px);
|
2019-01-07 17:20:36 +01:00
|
|
|
|
|
|
|
|
|
QLineF seam(px, p3);
|
|
|
|
|
seam.setAngle(seam.angle()+90);
|
|
|
|
|
seam.setLength(p.GetSAAfter(width));
|
|
|
|
|
points.append(seam.p2());
|
2019-02-20 08:59:59 +01:00
|
|
|
|
|
|
|
|
|
if (needRollback != nullptr)
|
|
|
|
|
{
|
|
|
|
|
*needRollback = true;
|
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-09-06 10:12:01 +02:00
|
|
|
|
QLineF edge1(p2, p1);
|
|
|
|
|
QLineF edge2(p2, p3);
|
|
|
|
|
const qreal angle = edge1.angleTo(edge2);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
|
2019-09-06 10:12:01 +02:00
|
|
|
|
if (angle > 180)
|
2019-01-07 17:20:36 +01:00
|
|
|
|
{
|
2019-09-06 10:12:01 +02:00
|
|
|
|
return AngleByLength(points, p1, p2, p3, bigLine1, sp2, bigLine2, p, width, needRollback);
|
2019-01-07 17:20:36 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-09-06 10:12:01 +02:00
|
|
|
|
// Because artificial loop can lead to wrong clipping we must rollback current seam allowance points
|
|
|
|
|
bool success = false;
|
|
|
|
|
const int countBefore = points.size();
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> temp = points;
|
2019-09-06 10:12:01 +02:00
|
|
|
|
temp.append(bigLine1.p2());
|
|
|
|
|
temp = VAbstractPiece::RollbackSeamAllowance(temp, edge, &success);
|
|
|
|
|
|
|
|
|
|
if (success)
|
2019-01-07 17:20:36 +01:00
|
|
|
|
{
|
2019-09-06 10:12:01 +02:00
|
|
|
|
points = temp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
|
{
|
|
|
|
|
px = points.last();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (countBefore > 0)
|
|
|
|
|
{
|
|
|
|
|
QLineF seam(px, p3);
|
|
|
|
|
seam.setAngle(seam.angle()+90);
|
|
|
|
|
seam.setLength(p.GetSAAfter(width));
|
|
|
|
|
points.append(seam.p2());
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (needRollback != nullptr)
|
|
|
|
|
{
|
|
|
|
|
*needRollback = not success;
|
|
|
|
|
}
|
2019-01-07 17:20:36 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
|
|
|
|
|
return points;
|
2016-11-03 19:15:53 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-13 10:23:04 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-09-13 16:16:40 +02:00
|
|
|
|
QPointF SingleParallelPoint(const QPointF &p1, const QPointF &p2, qreal angle, qreal width)
|
2016-11-13 10:23:04 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
QLineF pLine(p1, p2);
|
|
|
|
|
pLine.setAngle( pLine.angle() + angle );
|
|
|
|
|
pLine.setLength( width );
|
|
|
|
|
return pLine.p2();
|
2016-11-13 10:23:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-09-13 16:16:40 +02:00
|
|
|
|
QLineF SimpleParallelLine(const QPointF &p1, const QPointF &p2, qreal width)
|
2016-11-13 10:23:04 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
const QLineF paralel = QLineF(SingleParallelPoint(p1, p2, 90, width),
|
|
|
|
|
SingleParallelPoint(p2, p1, -90, width));
|
|
|
|
|
return paralel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
QLineF BisectorLine(const QPointF &p1, const QPointF &p2, const QPointF &p3)
|
|
|
|
|
{
|
|
|
|
|
QLineF line1(p2, p1);
|
|
|
|
|
QLineF line2(p2, p3);
|
|
|
|
|
QLineF bLine;
|
|
|
|
|
|
|
|
|
|
const qreal angle1 = line1.angleTo(line2);
|
|
|
|
|
const qreal angle2 = line2.angleTo(line1);
|
|
|
|
|
|
|
|
|
|
if (angle1 <= angle2)
|
2016-11-13 10:23:04 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
bLine = line1;
|
|
|
|
|
bLine.setAngle(bLine.angle() + angle1/2.0);
|
2016-11-13 10:23:04 +01:00
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
else
|
2016-11-13 10:23:04 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
bLine = line2;
|
|
|
|
|
bLine.setAngle(bLine.angle() + angle2/2.0);
|
2016-11-13 10:23:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
return bLine;
|
2016-11-13 10:23:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-10 13:06:09 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-09-13 16:16:40 +02:00
|
|
|
|
qreal AngleBetweenBisectors(const QLineF &b1, const QLineF &b2)
|
2016-11-10 13:06:09 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
const QLineF newB2 = b2.translated(-(b2.p1().x() - b1.p1().x()), -(b2.p1().y() - b1.p1().y()));
|
|
|
|
|
|
|
|
|
|
qreal angle1 = newB2.angleTo(b1);
|
|
|
|
|
if (VFuzzyComparePossibleNulls(angle1, 360))
|
|
|
|
|
{
|
|
|
|
|
angle1 = 0;
|
2016-11-10 13:06:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
qreal angle2 = b1.angleTo(newB2);
|
|
|
|
|
if (VFuzzyComparePossibleNulls(angle2, 360))
|
2016-11-10 13:06:09 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
angle2 = 0;
|
2016-11-10 13:06:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 14:16:29 +02:00
|
|
|
|
return qMin(angle1, angle2);
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-22 16:06:30 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
template<class T>
|
|
|
|
|
QVector<T> CorrectPathDistortion(QVector<T> path)
|
|
|
|
|
{
|
|
|
|
|
if (path.size() < 3)
|
|
|
|
|
{
|
|
|
|
|
return path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int prev = -1;
|
|
|
|
|
for (qint32 i = 0; i < path.size(); ++i)
|
|
|
|
|
{
|
|
|
|
|
if (prev == -1)
|
|
|
|
|
{
|
|
|
|
|
i == 0 ? prev = path.size() - 1 : prev = i-1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int next = i+1;
|
|
|
|
|
if (i == path.size() - 1)
|
|
|
|
|
{
|
|
|
|
|
next = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QPointF &iPoint = path.at(i);
|
|
|
|
|
const QPointF &prevPoint = path.at(prev);
|
|
|
|
|
const QPointF &nextPoint = path.at(next);
|
|
|
|
|
|
|
|
|
|
if (VGObject::IsPointOnLineSegment(iPoint, prevPoint, nextPoint))
|
|
|
|
|
{
|
|
|
|
|
const QPointF p = VGObject::CorrectDistortion(iPoint, prevPoint, nextPoint);
|
|
|
|
|
path[i].setX(p.x());
|
|
|
|
|
path[i].setY(p.y());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return path;
|
|
|
|
|
}
|
2019-09-02 07:55:45 +02:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2019-11-03 09:01:32 +01:00
|
|
|
|
bool Rollback(QVector<VRawSAPoint> &points, const QLineF &edge)
|
2019-09-02 07:55:45 +02:00
|
|
|
|
{
|
|
|
|
|
bool success = false;
|
|
|
|
|
if (not points.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
points.removeLast();
|
|
|
|
|
points = VAbstractPiece::RollbackSeamAllowance(points, edge, &success);
|
|
|
|
|
|
|
|
|
|
if (not points.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
if (points.last().toPoint() != points.first().toPoint())
|
|
|
|
|
{
|
|
|
|
|
points.append(points.first());// Should be always closed
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2019-11-03 09:01:32 +01:00
|
|
|
|
void RollbackByLength(QVector<VRawSAPoint> &ekvPoints, const QVector<VSAPoint> &points, qreal width)
|
2019-09-02 07:55:45 +02:00
|
|
|
|
{
|
|
|
|
|
const QLineF bigLine1 = VAbstractPiece::ParallelLine(points.at(points.size()-2), points.at(0), width);
|
|
|
|
|
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> temp = ekvPoints;
|
2019-09-02 07:55:45 +02:00
|
|
|
|
temp.insert(ekvPoints.size()-1, bigLine1.p2());
|
|
|
|
|
bool success = Rollback(temp, VAbstractPiece::ParallelLine(points.at(0), points.at(1), width));
|
|
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
|
{
|
|
|
|
|
ekvPoints = temp;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2019-11-03 09:01:32 +01:00
|
|
|
|
void RollbackBySecondEdgeSymmetry(QVector<VRawSAPoint> &ekvPoints, const QVector<VSAPoint> &points, qreal width)
|
2019-09-02 07:55:45 +02:00
|
|
|
|
{
|
|
|
|
|
const QLineF axis = QLineF(points.at(points.size()-1), points.at(1));
|
|
|
|
|
const QLineF bigLine1 = VAbstractPiece::ParallelLine(points.at(points.size()-2), points.at(0), width);
|
|
|
|
|
QLineF sEdge(VPointF::FlipPF(axis, bigLine1.p1()), VPointF::FlipPF(axis, bigLine1.p2()));
|
|
|
|
|
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> temp = ekvPoints;
|
2019-09-02 07:55:45 +02:00
|
|
|
|
temp.insert(ekvPoints.size()-1, bigLine1.p2());
|
|
|
|
|
bool success = Rollback(temp, sEdge);
|
|
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
|
{
|
|
|
|
|
ekvPoints = temp;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2019-11-03 09:01:32 +01:00
|
|
|
|
void RollbackByFirstEdgeSymmetry(QVector<VRawSAPoint> &ekvPoints, const QVector<VSAPoint> &points, qreal width)
|
2019-09-02 07:55:45 +02:00
|
|
|
|
{
|
|
|
|
|
const QLineF axis = QLineF(points.at(points.size()-2), points.at(points.size()-1));
|
|
|
|
|
const QLineF bigLine2 = VAbstractPiece::ParallelLine(points.at(points.size()-1), points.at(1), width);
|
|
|
|
|
QLineF sEdge(VPointF::FlipPF(axis, bigLine2.p1()), VPointF::FlipPF(axis, bigLine2.p2()));
|
|
|
|
|
const QLineF bigLine1 = VAbstractPiece::ParallelLine(points.at(points.size()-2), points.at(0), width);
|
|
|
|
|
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> temp = ekvPoints;
|
2019-09-02 07:55:45 +02:00
|
|
|
|
temp.insert(ekvPoints.size()-1, bigLine1.p2());
|
|
|
|
|
bool success = Rollback(temp, sEdge);
|
|
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
|
{
|
|
|
|
|
ekvPoints = temp;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2019-11-03 09:01:32 +01:00
|
|
|
|
void RollbackByPointsIntersection(QVector<VRawSAPoint> &ekvPoints, const QVector<VSAPoint> &points, qreal width)
|
2019-09-02 07:55:45 +02:00
|
|
|
|
{
|
|
|
|
|
const QLineF bigLine1 = VAbstractPiece::ParallelLine(points.at(points.size()-2), points.at(0), width);
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> temp = ekvPoints;
|
2019-09-02 07:55:45 +02:00
|
|
|
|
temp.insert(ekvPoints.size()-1, bigLine1.p2());
|
|
|
|
|
bool success = Rollback(temp, QLineF(points.last(), points.at(1)));
|
|
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
|
{
|
|
|
|
|
ekvPoints = temp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ekvPoints.size() > 2)
|
|
|
|
|
{ // Fix for the rule of main path
|
|
|
|
|
ekvPoints.removeAt(ekvPoints.size()-1);
|
|
|
|
|
ekvPoints.prepend(ekvPoints.at(ekvPoints.size()-1));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2019-11-03 09:01:32 +01:00
|
|
|
|
void RollbackBySecondEdgeRightAngle(QVector<VRawSAPoint> &ekvPoints, const QVector<VSAPoint> &points, qreal width)
|
2019-09-02 07:55:45 +02:00
|
|
|
|
{
|
|
|
|
|
if (not ekvPoints.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
const QLineF edge(points.last(), points.at(1));
|
|
|
|
|
const QLineF bigLine1 = VAbstractPiece::ParallelLine(points.at(points.size()-2), points.at(0), width);
|
|
|
|
|
|
|
|
|
|
QPointF px;
|
|
|
|
|
edge.intersect(bigLine1, &px);
|
|
|
|
|
|
|
|
|
|
ekvPoints.removeLast();
|
|
|
|
|
|
|
|
|
|
if (IsOutsidePoint(bigLine1.p1(), bigLine1.p2(), px))
|
|
|
|
|
{
|
|
|
|
|
if (ekvPoints.size() > 3)
|
|
|
|
|
{
|
|
|
|
|
const QLineF edge1(ekvPoints.at(ekvPoints.size()-2), ekvPoints.last());
|
|
|
|
|
const QLineF edge2(ekvPoints.at(0), ekvPoints.at(1));
|
|
|
|
|
|
|
|
|
|
QPointF crosPoint;
|
|
|
|
|
const QLineF::IntersectType type = edge1.intersect(edge2, &crosPoint );
|
|
|
|
|
if (type == QLineF::BoundedIntersection)
|
|
|
|
|
{
|
|
|
|
|
ekvPoints.removeFirst();
|
|
|
|
|
ekvPoints.removeLast();
|
|
|
|
|
|
|
|
|
|
ekvPoints.append(crosPoint);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
bool success = false;
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> temp = ekvPoints;
|
2019-09-02 07:55:45 +02:00
|
|
|
|
temp.insert(ekvPoints.size()-1, bigLine1.p2());
|
|
|
|
|
temp = VAbstractPiece::RollbackSeamAllowance(temp, edge, &success);
|
|
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
|
{
|
|
|
|
|
ekvPoints = temp;
|
|
|
|
|
px = ekvPoints.last();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QLineF seam(px, points.at(1));
|
|
|
|
|
seam.setAngle(seam.angle()+90);
|
|
|
|
|
seam.setLength(points.at(0).GetSAAfter(width));
|
|
|
|
|
ekvPoints.append(seam.p2());
|
|
|
|
|
|
|
|
|
|
if (not ekvPoints.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
ekvPoints.append(ekvPoints.first());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (not ekvPoints.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
if (ekvPoints.last().toPoint() != ekvPoints.first().toPoint())
|
|
|
|
|
{
|
|
|
|
|
ekvPoints.append(ekvPoints.first());// Should be always closed
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-03 09:01:32 +01:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
QVector<QPointF> CleanLoopArtifacts(const QVector<VRawSAPoint> &points)
|
|
|
|
|
{
|
|
|
|
|
QVector<QPointF> cleaned;
|
|
|
|
|
cleaned.reserve(points.size());
|
|
|
|
|
for (auto &point : points)
|
|
|
|
|
{
|
|
|
|
|
if (not point.LoopPoint())
|
|
|
|
|
{
|
|
|
|
|
cleaned.append(point);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return cleaned;
|
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
2018-09-13 15:46:04 +02:00
|
|
|
|
|
2019-07-01 11:26:08 +02:00
|
|
|
|
// Friend functions
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
QDataStream &operator<<(QDataStream &dataStream, const VAbstractPiece &piece)
|
|
|
|
|
{
|
|
|
|
|
dataStream << *piece.d;
|
|
|
|
|
return dataStream;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
QDataStream &operator>>(QDataStream &dataStream, VAbstractPiece &piece)
|
|
|
|
|
{
|
|
|
|
|
dataStream >> *piece.d;
|
|
|
|
|
return dataStream;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
VAbstractPiece::VAbstractPiece()
|
|
|
|
|
: d(new VAbstractPieceData)
|
|
|
|
|
{}
|
2016-11-10 13:06:09 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
VAbstractPiece::VAbstractPiece(const VAbstractPiece &piece)
|
|
|
|
|
:d (piece.d)
|
|
|
|
|
{}
|
2016-11-10 13:06:09 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
VAbstractPiece &VAbstractPiece::operator=(const VAbstractPiece &piece)
|
|
|
|
|
{
|
|
|
|
|
if ( &piece == this )
|
|
|
|
|
{
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
d = piece.d;
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
2016-11-13 20:13:55 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
VAbstractPiece::~VAbstractPiece()
|
|
|
|
|
{}
|
2016-11-17 10:00:04 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
QString VAbstractPiece::GetName() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_name;
|
2016-11-10 13:06:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-19 14:29:54 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-09-13 16:16:40 +02:00
|
|
|
|
void VAbstractPiece::SetName(const QString &value)
|
2016-11-19 14:29:54 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
d->m_name = value;
|
2016-11-19 14:29:54 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-19 17:27:06 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-09-13 16:16:40 +02:00
|
|
|
|
bool VAbstractPiece::IsForbidFlipping() const
|
2016-11-19 17:27:06 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
return d->m_forbidFlipping;
|
|
|
|
|
}
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void VAbstractPiece::SetForbidFlipping(bool value)
|
|
|
|
|
{
|
|
|
|
|
d->m_forbidFlipping = value;
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if (value)
|
2016-11-19 17:27:06 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
SetForceFlipping(not value);
|
2016-11-19 17:27:06 +01:00
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
bool VAbstractPiece::IsForceFlipping() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_forceFlipping;
|
|
|
|
|
}
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void VAbstractPiece::SetForceFlipping(bool value)
|
|
|
|
|
{
|
|
|
|
|
d->m_forceFlipping = value;
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if (value)
|
2016-11-19 17:27:06 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
SetForbidFlipping(not value);
|
2016-11-19 17:27:06 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-09-13 16:16:40 +02:00
|
|
|
|
bool VAbstractPiece::IsSeamAllowance() const
|
2016-11-19 17:27:06 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
return d->m_seamAllowance;
|
|
|
|
|
}
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void VAbstractPiece::SetSeamAllowance(bool value)
|
|
|
|
|
{
|
|
|
|
|
d->m_seamAllowance = value;
|
|
|
|
|
}
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
bool VAbstractPiece::IsSeamAllowanceBuiltIn() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_seamAllowanceBuiltIn;
|
|
|
|
|
}
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void VAbstractPiece::SetSeamAllowanceBuiltIn(bool value)
|
|
|
|
|
{
|
|
|
|
|
d->m_seamAllowanceBuiltIn = value;
|
|
|
|
|
}
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
bool VAbstractPiece::IsHideMainPath() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_hideMainPath;
|
|
|
|
|
}
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void VAbstractPiece::SetHideMainPath(bool value)
|
|
|
|
|
{
|
|
|
|
|
d->m_hideMainPath = value;
|
2016-11-19 17:27:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-09-13 16:16:40 +02:00
|
|
|
|
qreal VAbstractPiece::GetSAWidth() const
|
2016-11-19 17:27:06 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
return d->m_width;
|
|
|
|
|
}
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void VAbstractPiece::SetSAWidth(qreal value)
|
|
|
|
|
{
|
|
|
|
|
value >= 0 ? d->m_width = value : d->m_width = 0;
|
|
|
|
|
}
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-10-22 13:43:06 +02:00
|
|
|
|
QVector<QPointF> VAbstractPiece::Equidistant(QVector<VSAPoint> points, qreal width, const QString &name)
|
2018-09-13 16:16:40 +02:00
|
|
|
|
{
|
|
|
|
|
if (width < 0)
|
2016-11-19 17:27:06 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
qDebug()<<"Width < 0.";
|
|
|
|
|
return QVector<QPointF>();
|
2016-11-19 17:27:06 +01:00
|
|
|
|
}
|
2019-11-03 08:30:36 +01:00
|
|
|
|
width = qMax(width, VSAPoint::minSAWidth);
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2019-09-06 10:12:01 +02:00
|
|
|
|
// DumpVector(points, QStringLiteral("input.json.XXXXXX")); // Uncomment for dumping test data
|
2018-09-19 14:16:29 +02:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
points = CorrectEquidistantPoints(points);
|
|
|
|
|
if ( points.size() < 3 )
|
2016-11-19 17:27:06 +01:00
|
|
|
|
{
|
2019-09-10 15:57:31 +02:00
|
|
|
|
const QString errorMsg = tr("Piece '%1'. Not enough points to build seam allowance.").arg(name);
|
2019-10-28 16:44:31 +01:00
|
|
|
|
qApp->IsPedantic() ? throw VException(errorMsg) :
|
|
|
|
|
qWarning() << VAbstractApplication::patternMessageSignature + errorMsg;
|
2018-09-13 16:16:40 +02:00
|
|
|
|
return QVector<QPointF>();
|
2016-11-19 17:27:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-19 15:54:06 +02:00
|
|
|
|
// Fix distorsion
|
|
|
|
|
points = CorrectPathDistortion(points);
|
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if (points.last().toPoint() != points.first().toPoint())
|
2016-11-19 17:27:06 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
points.append(points.at(0));// Should be always closed
|
2016-11-19 17:27:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-09 16:46:02 +01:00
|
|
|
|
bool needRollback = false; // no need for rollback
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> ekvPoints;
|
2018-09-13 16:16:40 +02:00
|
|
|
|
for (qint32 i = 0; i < points.size(); ++i )
|
2018-09-13 15:46:04 +02:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if ( i == 0)
|
|
|
|
|
{//first point
|
|
|
|
|
ekvPoints = EkvPoint(ekvPoints, points.at(points.size()-2), points.at(points.size()-1), points.at(1),
|
2019-01-07 17:20:36 +01:00
|
|
|
|
points.at(0), width, &needRollback);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
continue;
|
2018-09-13 15:46:04 +02:00
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
|
|
|
|
|
if (i == points.size()-1)
|
|
|
|
|
{//last point
|
|
|
|
|
if (not ekvPoints.isEmpty())
|
|
|
|
|
{
|
2019-01-07 17:20:36 +01:00
|
|
|
|
ekvPoints.append(ekvPoints.first());
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
//points in the middle of polyline
|
|
|
|
|
ekvPoints = EkvPoint(ekvPoints, points.at(i-1), points.at(i), points.at(i+1), points.at(i), width);
|
2016-11-19 17:27:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-09 16:46:02 +01:00
|
|
|
|
if (needRollback)
|
2019-01-07 17:20:36 +01:00
|
|
|
|
{
|
|
|
|
|
QT_WARNING_PUSH
|
|
|
|
|
QT_WARNING_DISABLE_GCC("-Wswitch-default")
|
|
|
|
|
// This check helps to find missed angle types in the switch
|
|
|
|
|
Q_STATIC_ASSERT_X(static_cast<int>(PieceNodeAngle::LAST_ONE_DO_NOT_USE) == 7, "Not all types were handled.");
|
|
|
|
|
switch (points.last().GetAngleType())
|
|
|
|
|
{
|
|
|
|
|
case PieceNodeAngle::LAST_ONE_DO_NOT_USE:
|
|
|
|
|
case PieceNodeAngle::ByFirstEdgeRightAngle:
|
|
|
|
|
Q_UNREACHABLE(); //-V501
|
|
|
|
|
break;
|
|
|
|
|
case PieceNodeAngle::ByLength:
|
|
|
|
|
case PieceNodeAngle::ByLengthCurve:
|
2019-09-02 07:55:45 +02:00
|
|
|
|
RollbackByLength(ekvPoints, points, width);
|
2019-09-01 12:01:10 +02:00
|
|
|
|
break;
|
2019-01-07 17:20:36 +01:00
|
|
|
|
case PieceNodeAngle::ByFirstEdgeSymmetry:
|
2019-09-02 07:55:45 +02:00
|
|
|
|
RollbackByFirstEdgeSymmetry(ekvPoints, points, width);
|
2019-09-01 12:01:10 +02:00
|
|
|
|
break;
|
2019-01-07 17:20:36 +01:00
|
|
|
|
case PieceNodeAngle::BySecondEdgeSymmetry:
|
2019-09-02 07:55:45 +02:00
|
|
|
|
RollbackBySecondEdgeSymmetry(ekvPoints, points, width);
|
2019-01-07 17:20:36 +01:00
|
|
|
|
break;
|
|
|
|
|
case PieceNodeAngle::ByPointsIntersection:
|
2019-09-02 07:55:45 +02:00
|
|
|
|
RollbackByPointsIntersection(ekvPoints, points, width);
|
2019-01-07 17:20:36 +01:00
|
|
|
|
break;
|
|
|
|
|
case PieceNodeAngle::BySecondEdgeRightAngle:
|
2019-09-02 07:55:45 +02:00
|
|
|
|
RollbackBySecondEdgeRightAngle(ekvPoints, points, width);
|
2019-01-07 17:20:36 +01:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
QT_WARNING_POP
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-03 09:01:32 +01:00
|
|
|
|
// Uncomment for debug
|
|
|
|
|
// QVector<QPointF> cleaned;
|
|
|
|
|
// cleaned.reserve(ekvPoints.size());
|
|
|
|
|
// for (auto &point : ekvPoints)
|
|
|
|
|
// {
|
|
|
|
|
// cleaned.append(point);
|
|
|
|
|
// }
|
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
const bool removeFirstAndLast = false;
|
2019-11-03 09:01:32 +01:00
|
|
|
|
ekvPoints = RemoveDublicates(ekvPoints, removeFirstAndLast);
|
|
|
|
|
QVector<QPointF> cleaned = CheckLoops(ekvPoints);//Result path can contain loops
|
|
|
|
|
cleaned = CorrectEquidistantPoints(cleaned, removeFirstAndLast);
|
|
|
|
|
cleaned = CorrectPathDistortion(cleaned);
|
|
|
|
|
// DumpVector(cleaned, QStringLiteral("output.json.XXXXXX")); // Uncomment for dumping test data
|
|
|
|
|
return cleaned;
|
2016-11-19 17:27:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-09-13 16:16:40 +02:00
|
|
|
|
qreal VAbstractPiece::SumTrapezoids(const QVector<QPointF> &points)
|
2016-11-19 17:27:06 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
// Calculation a polygon area through the sum of the areas of trapezoids
|
|
|
|
|
qreal s, res = 0;
|
|
|
|
|
const int n = points.size();
|
2018-09-01 17:56:43 +02:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if(n > 2)
|
2016-11-19 17:27:06 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
for (int i = 0; i < n; ++i)
|
2018-09-13 15:46:04 +02:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if (i == 0)
|
|
|
|
|
{
|
|
|
|
|
//if i == 0, then y[i-1] replace on y[n-1]
|
|
|
|
|
s = points.at(i).x()*(points.at(n-1).y() - points.at(i+1).y());
|
|
|
|
|
res += s;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (i == n-1)
|
|
|
|
|
{
|
|
|
|
|
// if i == n-1, then y[i+1] replace on y[0]
|
|
|
|
|
s = points.at(i).x()*(points.at(i-1).y() - points.at(0).y());
|
|
|
|
|
res += s;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
s = points.at(i).x()*(points.at(i-1).y() - points.at(i+1).y());
|
|
|
|
|
res += s;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-09-13 15:46:04 +02:00
|
|
|
|
}
|
2016-11-19 17:27:06 +01:00
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
return res;
|
2016-11-19 17:27:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-03 09:01:32 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
QVector<QPointF> VAbstractPiece::CheckLoops(const QVector<QPointF> &points)
|
|
|
|
|
{
|
|
|
|
|
QVector<VRawSAPoint> rawPath;
|
|
|
|
|
rawPath.reserve(points.size());
|
|
|
|
|
for (auto &point : points)
|
|
|
|
|
{
|
|
|
|
|
rawPath.append(point);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return CheckLoops(rawPath);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-19 17:27:06 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-09-13 16:16:40 +02:00
|
|
|
|
/**
|
|
|
|
|
* @brief CheckLoops seek and delete loops in equidistant.
|
|
|
|
|
* @param points vector of points of equidistant.
|
|
|
|
|
* @return vector of points of equidistant.
|
|
|
|
|
*/
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<QPointF> VAbstractPiece::CheckLoops(const QVector<VRawSAPoint> &points)
|
2016-11-19 17:27:06 +01:00
|
|
|
|
{
|
2019-08-07 11:25:22 +02:00
|
|
|
|
// DumpVector(points); // Uncomment for dumping test data
|
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
int count = points.size();
|
|
|
|
|
/*If we got less than 4 points no need seek loops.*/
|
|
|
|
|
if (count < 4)
|
2016-11-19 17:27:06 +01:00
|
|
|
|
{
|
2019-11-03 09:01:32 +01:00
|
|
|
|
return CleanLoopArtifacts(points);
|
2016-11-19 17:27:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
const bool pathClosed = (points.first() == points.last());
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> ekvPoints;
|
2018-11-16 16:44:54 +01:00
|
|
|
|
ekvPoints.reserve(points.size());
|
|
|
|
|
|
|
|
|
|
QVector<qint32> uniqueVertices;
|
|
|
|
|
uniqueVertices.reserve(4);
|
2018-09-01 17:56:43 +02:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
qint32 i, j, jNext = 0;
|
|
|
|
|
for (i = 0; i < count; ++i)
|
2016-11-19 17:27:06 +01:00
|
|
|
|
{
|
2019-08-07 11:25:22 +02:00
|
|
|
|
/*Last three points no need to check.*/
|
|
|
|
|
/*Triangle can not contain a loop*/
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if (i > count-3)
|
2018-09-13 15:46:04 +02:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
ekvPoints.append(points.at(i));
|
|
|
|
|
continue;
|
2018-09-13 15:46:04 +02:00
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
|
|
|
|
|
enum LoopIntersectType { NoIntersection, BoundedIntersection, ParallelIntersection };
|
|
|
|
|
|
|
|
|
|
QPointF crosPoint;
|
|
|
|
|
LoopIntersectType status = NoIntersection;
|
|
|
|
|
const QLineF line1(points.at(i), points.at(i+1));
|
|
|
|
|
// Because a path can contains several loops we will seek the last and only then remove the loop(s)
|
|
|
|
|
// That's why we parse from the end
|
|
|
|
|
for (j = count-1; j >= i+2; --j)
|
2018-09-13 15:46:04 +02:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
j == count-1 ? jNext = 0 : jNext = j+1;
|
|
|
|
|
QLineF line2(points.at(j), points.at(jNext));
|
2018-09-01 17:56:43 +02:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if(qFuzzyIsNull(line2.length()))
|
|
|
|
|
{//If a path is closed the edge (count-1;0) length will be 0
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-11-16 16:44:54 +01:00
|
|
|
|
uniqueVertices.clear();
|
2016-11-19 17:27:06 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
auto AddUniqueIndex = [&uniqueVertices](qint32 i)
|
|
|
|
|
{
|
|
|
|
|
if (not uniqueVertices.contains(i))
|
|
|
|
|
{
|
|
|
|
|
uniqueVertices.append(i);
|
|
|
|
|
}
|
|
|
|
|
};
|
2016-11-11 16:58:13 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
AddUniqueIndex(i);
|
|
|
|
|
AddUniqueIndex(i+1);
|
|
|
|
|
AddUniqueIndex(j);
|
2016-11-11 16:58:13 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
// For closed path last point is equal to first. Using index of the first.
|
|
|
|
|
pathClosed && jNext == count-1 ? AddUniqueIndex(0) : AddUniqueIndex(jNext);
|
2016-11-10 13:06:09 +01:00
|
|
|
|
|
2019-08-07 11:25:22 +02:00
|
|
|
|
if (uniqueVertices.size() == 4)
|
|
|
|
|
{// Lines are not neighbors
|
|
|
|
|
const QLineF::IntersectType intersect = line1.intersect(line2, &crosPoint);
|
|
|
|
|
if (intersect == QLineF::NoIntersection)
|
|
|
|
|
{ // According to the documentation QLineF::NoIntersection indicates that the lines do not intersect;
|
|
|
|
|
// i.e. they are parallel. But parallel also mean they can be on the same line.
|
|
|
|
|
// Method IsLineSegmentOnLineSegment will check it.
|
|
|
|
|
if (VGObject::IsLineSegmentOnLineSegment(line1, line2))
|
|
|
|
|
{// Now we really sure that segments are on the same line and have real intersections.
|
|
|
|
|
status = ParallelIntersection;
|
2018-09-13 16:16:40 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-08-07 11:25:22 +02:00
|
|
|
|
else if (intersect == QLineF::BoundedIntersection)
|
|
|
|
|
{
|
|
|
|
|
status = BoundedIntersection;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
status = NoIntersection;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (status)
|
|
|
|
|
{
|
|
|
|
|
case ParallelIntersection:
|
|
|
|
|
/*We have found a loop.*/
|
|
|
|
|
ekvPoints.append(points.at(i));
|
|
|
|
|
ekvPoints.append(points.at(jNext));
|
|
|
|
|
jNext > j ? i = jNext : i = j; // Skip a loop
|
|
|
|
|
break;
|
|
|
|
|
case BoundedIntersection:
|
|
|
|
|
ekvPoints.append(points.at(i));
|
|
|
|
|
ekvPoints.append(crosPoint);
|
|
|
|
|
i = j;
|
|
|
|
|
break;
|
|
|
|
|
case NoIntersection:
|
|
|
|
|
/*We have not found loop.*/
|
|
|
|
|
ekvPoints.append(points.at(i));
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-08-07 11:25:22 +02:00
|
|
|
|
}
|
2019-11-03 09:01:32 +01:00
|
|
|
|
const QVector<QPointF> cleaned = CleanLoopArtifacts(ekvPoints);
|
|
|
|
|
// DumpVector(cleaned); // Uncomment for dumping test data
|
|
|
|
|
return cleaned;
|
2016-11-13 20:13:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-11 13:53:16 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-09-13 16:16:40 +02:00
|
|
|
|
/**
|
|
|
|
|
* @brief EkvPoint return seam aloowance points in place of intersection two edges. Last points of two edges should be
|
|
|
|
|
* equal.
|
|
|
|
|
* @param width global seam allowance width.
|
|
|
|
|
* @return seam aloowance points.
|
|
|
|
|
*/
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> VAbstractPiece::EkvPoint(QVector<VRawSAPoint> points, const VSAPoint &p1Line1,
|
|
|
|
|
const VSAPoint &p2Line1, const VSAPoint &p1Line2, const VSAPoint &p2Line2,
|
|
|
|
|
qreal width, bool *needRollback)
|
2017-01-11 13:53:16 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if (width < 0)
|
|
|
|
|
{ // width can't be < 0
|
2019-11-03 09:01:32 +01:00
|
|
|
|
return QVector<VRawSAPoint>();
|
2017-01-11 13:53:16 +01:00
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
|
2019-11-03 08:30:36 +01:00
|
|
|
|
width = qMax(width, VSAPoint::minSAWidth);
|
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if (p2Line1 != p2Line2)
|
2017-01-11 13:53:16 +01:00
|
|
|
|
{
|
2018-09-13 16:16:40 +02:00
|
|
|
|
qDebug()<<"Last points of two lines must be equal.";
|
2019-11-03 09:01:32 +01:00
|
|
|
|
return QVector<VRawSAPoint>(); // Wrong edges
|
2017-01-11 13:53:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-19 15:54:06 +02:00
|
|
|
|
const QLineF bigLine1 = ParallelLine(p1Line1, p2Line1, width );
|
|
|
|
|
const QLineF bigLine2 = ParallelLine(p2Line2, p1Line2, width );
|
2018-10-17 17:12:39 +02:00
|
|
|
|
|
2018-10-19 15:54:06 +02:00
|
|
|
|
if (VFuzzyComparePoints(bigLine1.p2(), bigLine2.p1()))
|
|
|
|
|
{
|
|
|
|
|
points.append(bigLine1.p2());
|
|
|
|
|
return points;
|
2018-10-17 17:12:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
QPointF crosPoint;
|
|
|
|
|
const QLineF::IntersectType type = bigLine1.intersect( bigLine2, &crosPoint );
|
|
|
|
|
switch (type)
|
|
|
|
|
{// There are at least three big cases
|
|
|
|
|
case (QLineF::BoundedIntersection):
|
|
|
|
|
// The easiest, real intersection
|
|
|
|
|
points.append(crosPoint);
|
|
|
|
|
return points;
|
|
|
|
|
case (QLineF::UnboundedIntersection):
|
|
|
|
|
{ // Most common case
|
|
|
|
|
/* Case when a path has point on line (both segments lie on the same line) and seam allowance creates
|
|
|
|
|
* prong. */
|
2019-09-03 16:46:09 +02:00
|
|
|
|
auto IsOnLine = [](const QPointF &base, const QPointF &sp1, const QPointF &sp2, qreal accuracy)
|
2018-10-19 15:54:06 +02:00
|
|
|
|
{
|
|
|
|
|
if (not VFuzzyComparePoints(base, sp1))
|
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return VGObject::IsPointOnLineviaPDP(sp2, base, sp1, accuracy);
|
2018-10-19 15:54:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (not VFuzzyComparePoints(base, sp2))
|
|
|
|
|
{
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return VGObject::IsPointOnLineviaPDP(sp1, base, sp2, accuracy);
|
2018-10-19 15:54:06 +02:00
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
};
|
2019-11-03 09:13:02 +01:00
|
|
|
|
if (VGObject::IsPointOnLineSegment(p2Line1, p1Line1, p1Line2, ToPixel(0.5, Unit::Mm)) &&
|
|
|
|
|
IsOnLine(p2Line1, bigLine1.p2(), bigLine2.p1(), ToPixel(0.5, Unit::Mm)))
|
2018-09-13 16:16:40 +02:00
|
|
|
|
{
|
|
|
|
|
points.append(bigLine1.p2());
|
|
|
|
|
points.append(bigLine2.p1());
|
|
|
|
|
return points;
|
|
|
|
|
}
|
2017-01-11 13:53:16 +01:00
|
|
|
|
|
2018-09-13 16:31:14 +02:00
|
|
|
|
const qreal localWidth = p2Line1.MaxLocalSA(width);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
QLineF line( p2Line1, crosPoint );
|
2017-01-11 13:53:16 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
// Checking two subcases
|
|
|
|
|
const QLineF b1 = BisectorLine(p1Line1, p2Line1, p1Line2);
|
|
|
|
|
const QLineF b2 = BisectorLine(bigLine1.p1(), crosPoint, bigLine2.p2());
|
2017-01-11 13:53:16 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
const qreal angle = AngleBetweenBisectors(b1, b2);
|
2017-01-11 13:53:16 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
// Comparison bisector angles helps to find direction
|
2019-01-07 17:20:36 +01:00
|
|
|
|
if (angle < 135
|
|
|
|
|
|| VFuzzyComparePossibleNulls(angle, 135.0))// Go in a same direction
|
2018-09-13 16:16:40 +02:00
|
|
|
|
{//Regular equdistant case
|
|
|
|
|
QT_WARNING_PUSH
|
|
|
|
|
QT_WARNING_DISABLE_GCC("-Wswitch-default")
|
2018-09-19 14:16:29 +02:00
|
|
|
|
// This check helps to find missed angle types in the switch
|
2018-10-17 17:12:39 +02:00
|
|
|
|
Q_STATIC_ASSERT_X(static_cast<int>(PieceNodeAngle::LAST_ONE_DO_NOT_USE) == 7,
|
2018-09-19 14:16:29 +02:00
|
|
|
|
"Not all types were handled.");
|
2018-09-13 16:16:40 +02:00
|
|
|
|
switch (p2Line1.GetAngleType())
|
|
|
|
|
{
|
2018-09-19 14:16:29 +02:00
|
|
|
|
case PieceNodeAngle::LAST_ONE_DO_NOT_USE:
|
|
|
|
|
Q_UNREACHABLE(); //-V501
|
|
|
|
|
break;
|
2018-09-13 16:16:40 +02:00
|
|
|
|
case PieceNodeAngle::ByLength:
|
2018-10-17 17:12:39 +02:00
|
|
|
|
case PieceNodeAngle::ByLengthCurve:
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByLength(points, p1Line1, p2Line1, p1Line2, bigLine1, crosPoint, bigLine2, p2Line1,
|
|
|
|
|
width, needRollback);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
case PieceNodeAngle::ByPointsIntersection:
|
|
|
|
|
return AngleByIntersection(points, p1Line1, p2Line1, p1Line2, bigLine1, crosPoint, bigLine2,
|
2019-01-07 17:20:36 +01:00
|
|
|
|
p2Line1, width, needRollback);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
case PieceNodeAngle::ByFirstEdgeSymmetry:
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByFirstSymmetry(points, p1Line1, p2Line1, p1Line2, bigLine1, crosPoint, bigLine2,
|
2019-01-07 17:20:36 +01:00
|
|
|
|
p2Line1, width, needRollback);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
case PieceNodeAngle::BySecondEdgeSymmetry:
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleBySecondSymmetry(points, p1Line1, p2Line1, p1Line2, bigLine1, crosPoint, bigLine2,
|
2019-01-07 17:20:36 +01:00
|
|
|
|
p2Line1, width, needRollback);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
case PieceNodeAngle::ByFirstEdgeRightAngle:
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleByFirstRightAngle(points, p1Line1, p2Line1, p1Line2, bigLine1, crosPoint, bigLine2,
|
2019-02-12 13:51:21 +01:00
|
|
|
|
p2Line1, width, needRollback);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
case PieceNodeAngle::BySecondEdgeRightAngle:
|
2019-09-03 16:46:09 +02:00
|
|
|
|
return AngleBySecondRightAngle(points, p1Line1, p2Line1, p1Line2, bigLine1, crosPoint, bigLine2,
|
2019-01-07 17:20:36 +01:00
|
|
|
|
p2Line1, width, needRollback);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
QT_WARNING_POP
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{ // Different directions
|
|
|
|
|
QLineF bisector(p2Line1, p1Line1);
|
|
|
|
|
bisector.setAngle(b1.angle());
|
2017-01-11 13:53:16 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
const qreal result1 = PointPosition(bisector.p2(), QLineF(p1Line1, p2Line1));
|
|
|
|
|
const qreal result2 = PointPosition(bisector.p2(), QLineF(p2Line2, p1Line2));
|
2017-01-11 13:53:16 +01:00
|
|
|
|
|
2018-09-13 16:16:40 +02:00
|
|
|
|
if ((result1 < 0 || qFuzzyIsNull(result1)) && (result2 < 0 || qFuzzyIsNull(result2)))
|
2019-11-03 09:13:02 +01:00
|
|
|
|
{// Dart case. A bisector watches outside.
|
|
|
|
|
QLineF edge1(p1Line1, p2Line1);
|
|
|
|
|
QLineF edge2(p1Line2, p2Line2);
|
2018-09-13 16:16:40 +02:00
|
|
|
|
|
2019-11-03 09:13:02 +01:00
|
|
|
|
if (qAbs(edge1.length() - edge2.length()) <= qMax(edge1.length(), edge2.length())*0.2)
|
2018-09-13 16:16:40 +02:00
|
|
|
|
{
|
2019-11-03 09:13:02 +01:00
|
|
|
|
// Classic dart must be symmetrical.
|
|
|
|
|
// In some cases a point still valid, but ignore if going outside of an equdistant.
|
|
|
|
|
|
|
|
|
|
const QLineF bigEdge = ParallelLine(p1Line1, p1Line2, localWidth );
|
|
|
|
|
QPointF px;
|
|
|
|
|
const QLineF::IntersectType type = bigEdge.intersect(line, &px);
|
|
|
|
|
if (type != QLineF::BoundedIntersection && line.length() < QLineF(p2Line1, px).length())
|
2018-09-13 16:16:40 +02:00
|
|
|
|
{
|
|
|
|
|
points.append(crosPoint);
|
|
|
|
|
return points;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-03 09:13:02 +01:00
|
|
|
|
else
|
|
|
|
|
{ // Just an acute angle with big seam allowance
|
|
|
|
|
if (IsSameDirection(bigLine2.p1(), bigLine2.p2(), crosPoint))
|
|
|
|
|
{
|
|
|
|
|
QLineF loop(crosPoint, bigLine1.p1());
|
|
|
|
|
loop.setAngle(loop.angle() + 180);
|
|
|
|
|
loop.setLength(accuracyPointOnLine*2.);
|
|
|
|
|
points.append(loop.p2());
|
|
|
|
|
points.append(crosPoint);
|
|
|
|
|
|
|
|
|
|
loop = QLineF(crosPoint, bigLine1.p1());
|
|
|
|
|
loop.setLength(loop.length() + localWidth*2.);
|
|
|
|
|
VRawSAPoint loopPoint(loop.p2());
|
|
|
|
|
loopPoint.SetLoopPoint(true);
|
|
|
|
|
points.append(loopPoint);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return points;
|
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{ // New subcase. This is not a dart. An angle is acute and bisector watch inside.
|
|
|
|
|
const qreal result1 = PointPosition(crosPoint, QLineF(p1Line1, p2Line1));
|
|
|
|
|
const qreal result2 = PointPosition(crosPoint, QLineF(p2Line2, p1Line2));
|
|
|
|
|
|
|
|
|
|
if ((result1 < 0 || qFuzzyIsNull(result1)) && (result2 < 0 || qFuzzyIsNull(result2)))
|
|
|
|
|
{// The cross point is still outside of a piece
|
|
|
|
|
if (line.length() >= localWidth)
|
|
|
|
|
{
|
|
|
|
|
points.append(crosPoint);
|
|
|
|
|
return points;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{// but not enough far, fix it
|
|
|
|
|
line.setLength(localWidth);
|
|
|
|
|
points.append(line.p2());
|
|
|
|
|
return points;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{// Wrong cross point, probably inside of a piece. Manually creating correct seam allowance
|
|
|
|
|
const QLineF bigEdge = SimpleParallelLine(bigLine1.p2(), bigLine2.p1(), localWidth );
|
|
|
|
|
points.append(bigEdge.p1());
|
|
|
|
|
points.append(bigEdge.p2());
|
|
|
|
|
return points;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case (QLineF::NoIntersection):
|
|
|
|
|
/*If we have correct lines this means lines lie on a line or parallel.*/
|
|
|
|
|
points.append(bigLine1.p2());
|
|
|
|
|
points.append(bigLine2.p1()); // Second point for parallel line
|
|
|
|
|
return points;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2017-01-11 13:53:16 +01:00
|
|
|
|
}
|
2018-09-13 16:16:40 +02:00
|
|
|
|
return points;
|
2017-01-11 13:53:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2018-09-13 16:16:40 +02:00
|
|
|
|
QLineF VAbstractPiece::ParallelLine(const VSAPoint &p1, const VSAPoint &p2, qreal width)
|
2017-01-11 13:53:16 +01:00
|
|
|
|
{
|
2019-11-03 08:30:36 +01:00
|
|
|
|
return QLineF(SingleParallelPoint(p1, p2, 90, p1.GetSAAfter(width)),
|
|
|
|
|
SingleParallelPoint(p2, p1, -90, p2.GetSABefore(width)));
|
2017-01-11 13:53:16 +01:00
|
|
|
|
}
|
2017-03-30 10:06:47 +02:00
|
|
|
|
|
2019-02-23 17:43:06 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
bool VAbstractPiece::IsAllowanceValid(const QVector<QPointF> &base, const QVector<QPointF> &allowance)
|
|
|
|
|
{
|
|
|
|
|
if (base.size() < 3 || allowance.size() < 3)
|
|
|
|
|
{
|
|
|
|
|
return false; // Not enough data
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-27 19:33:59 +01:00
|
|
|
|
// DumpVector(base); // Uncomment for dumping test data
|
|
|
|
|
// DumpVector(allowance); // Uncomment for dumping test data
|
|
|
|
|
|
2019-02-23 17:43:06 +01:00
|
|
|
|
const qreal baseDirection = VPiece::SumTrapezoids(base);
|
|
|
|
|
const qreal allowanceDirection = VPiece::SumTrapezoids(allowance);
|
|
|
|
|
|
|
|
|
|
if (baseDirection >= 0 || allowanceDirection >= 0)
|
|
|
|
|
{
|
|
|
|
|
return false; // Wrong direction
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-18 12:48:32 +02:00
|
|
|
|
for (auto i = 0; i < base.count(); ++i)
|
2019-02-23 17:43:06 +01:00
|
|
|
|
{
|
2019-06-18 12:48:32 +02:00
|
|
|
|
int nextI = -1;
|
|
|
|
|
if (i < base.count()-1)
|
|
|
|
|
{
|
|
|
|
|
nextI = i + 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
nextI = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QLineF baseSegment(base.at(i), base.at(nextI));
|
2019-02-23 17:43:06 +01:00
|
|
|
|
if (baseSegment.isNull())
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-18 12:48:32 +02:00
|
|
|
|
for (auto j = 0; j < allowance.count(); ++j)
|
2019-02-23 17:43:06 +01:00
|
|
|
|
{
|
2019-06-18 12:48:32 +02:00
|
|
|
|
int nextJ = -1;
|
|
|
|
|
if (j < allowance.count()-1)
|
|
|
|
|
{
|
|
|
|
|
nextJ = j + 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
nextJ = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QLineF allowanceSegment(allowance.at(j), allowance.at(nextJ));
|
2019-02-23 17:43:06 +01:00
|
|
|
|
if (allowanceSegment.isNull())
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QPointF crosPoint;
|
|
|
|
|
const auto type = baseSegment.intersect(allowanceSegment, &crosPoint);
|
2019-02-27 19:33:59 +01:00
|
|
|
|
if (type == QLineF::BoundedIntersection
|
|
|
|
|
&& not VFuzzyComparePoints(baseSegment.p1(), crosPoint)
|
|
|
|
|
&& not VFuzzyComparePoints(baseSegment.p2(), crosPoint)
|
|
|
|
|
&& not VGObject::IsPointOnLineviaPDP(allowanceSegment.p1(), baseSegment.p1(), baseSegment.p2())
|
|
|
|
|
&& not VGObject::IsPointOnLineviaPDP(allowanceSegment.p2(), baseSegment.p1(), baseSegment.p2()))
|
2019-02-23 17:43:06 +01:00
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-30 10:06:47 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
bool VAbstractPiece::IsEkvPointOnLine(const QPointF &iPoint, const QPointF &prevPoint, const QPointF &nextPoint)
|
|
|
|
|
{
|
2017-04-18 20:39:13 +02:00
|
|
|
|
return VGObject::IsPointOnLineviaPDP(iPoint, prevPoint, nextPoint);
|
2017-03-30 10:06:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
bool VAbstractPiece::IsEkvPointOnLine(const VSAPoint &iPoint, const VSAPoint &prevPoint, const VSAPoint &nextPoint)
|
|
|
|
|
{
|
2017-04-27 15:37:10 +02:00
|
|
|
|
// See bug #671
|
|
|
|
|
const qreal tmpWidth = 10;
|
|
|
|
|
const QLineF bigLine1 = ParallelLine(prevPoint, iPoint, tmpWidth );
|
|
|
|
|
const QLineF bigLine2 = ParallelLine(iPoint, nextPoint, tmpWidth );
|
|
|
|
|
|
2019-09-12 19:57:26 +02:00
|
|
|
|
bool seamOnLine = VGObject::IsPointOnLineviaPDP(iPoint, prevPoint, nextPoint);
|
|
|
|
|
bool sa1OnLine = VGObject::IsPointOnLineviaPDP(bigLine1.p2(), bigLine1.p1(), bigLine2.p2());
|
|
|
|
|
bool sa2OnLine = VGObject::IsPointOnLineviaPDP(bigLine2.p1(), bigLine1.p1(), bigLine2.p2());
|
|
|
|
|
bool saDiff = qAbs(prevPoint.GetSAAfter(tmpWidth) - nextPoint.GetSABefore(tmpWidth)) < accuracyPointOnLine;
|
|
|
|
|
|
|
|
|
|
// left point that splits a curve
|
|
|
|
|
bool curve = (prevPoint.GetAngleType() == PieceNodeAngle::ByLengthCurve &&
|
|
|
|
|
iPoint.GetAngleType() == PieceNodeAngle::ByLengthCurve) ||
|
|
|
|
|
(nextPoint.GetAngleType() == PieceNodeAngle::ByLengthCurve &&
|
|
|
|
|
iPoint.GetAngleType() == PieceNodeAngle::ByLengthCurve);
|
|
|
|
|
|
|
|
|
|
return seamOnLine && sa1OnLine && sa2OnLine && saDiff && not curve;
|
2017-03-30 10:06:47 +02:00
|
|
|
|
}
|
2017-04-25 10:42:08 +02:00
|
|
|
|
|
2017-07-09 21:27:54 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
qreal VAbstractPiece::GetMx() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_mx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void VAbstractPiece::SetMx(qreal value)
|
|
|
|
|
{
|
|
|
|
|
d->m_mx = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
qreal VAbstractPiece::GetMy() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_my;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void VAbstractPiece::SetMy(qreal value)
|
|
|
|
|
{
|
|
|
|
|
d->m_my = value;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-19 09:45:57 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
uint VAbstractPiece::GetPriority() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_priority;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void VAbstractPiece::SetPriority(uint value)
|
|
|
|
|
{
|
|
|
|
|
d->m_priority = value;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-25 10:42:08 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
qreal VSAPoint::GetSABefore(qreal width) const
|
|
|
|
|
{
|
|
|
|
|
if (m_before < 0)
|
|
|
|
|
{
|
|
|
|
|
return width;
|
|
|
|
|
}
|
2019-11-03 08:30:36 +01:00
|
|
|
|
return qMax(m_before, minSAWidth);
|
2017-04-25 10:42:08 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
qreal VSAPoint::GetSAAfter(qreal width) const
|
|
|
|
|
{
|
|
|
|
|
if (m_after < 0)
|
|
|
|
|
{
|
|
|
|
|
return width;
|
|
|
|
|
}
|
2019-11-03 08:30:36 +01:00
|
|
|
|
return qMax(m_after, minSAWidth);
|
2017-04-25 10:42:08 +02:00
|
|
|
|
}
|
2018-09-13 16:31:14 +02:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
qreal VSAPoint::MaxLocalSA(qreal width) const
|
|
|
|
|
{
|
2019-11-03 08:30:36 +01:00
|
|
|
|
return qMax(GetSAAfter(width), GetSABefore(width));
|
2018-09-13 16:31:14 +02:00
|
|
|
|
}
|
2019-01-09 16:46:02 +01:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
qreal VSAPoint::PassmarkLength(qreal width) const
|
|
|
|
|
{
|
2019-04-17 12:02:22 +02:00
|
|
|
|
if (not m_manualPassmarkLength)
|
|
|
|
|
{
|
|
|
|
|
qreal passmarkLength = MaxLocalSA(width) * passmarkFactor;
|
|
|
|
|
passmarkLength = qMin(passmarkLength, maxPassmarkLength);
|
|
|
|
|
return passmarkLength;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return m_passmarkLength;
|
|
|
|
|
}
|
2019-01-09 16:46:02 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-07 16:53:18 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
QJsonObject VSAPoint::toJson() const
|
|
|
|
|
{
|
|
|
|
|
QJsonObject pointObject;
|
|
|
|
|
pointObject[QLatin1String("type")] = "VSAPoint";
|
|
|
|
|
pointObject[QLatin1String("x")] = x();
|
|
|
|
|
pointObject[QLatin1String("y")] = y();
|
|
|
|
|
|
|
|
|
|
if (not VFuzzyComparePossibleNulls(m_before, -1))
|
|
|
|
|
{
|
|
|
|
|
pointObject[QLatin1String("saBefore")] = m_before;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (not VFuzzyComparePossibleNulls(m_after, -1))
|
|
|
|
|
{
|
|
|
|
|
pointObject[QLatin1String("saAfter")] = m_after;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_angle != PieceNodeAngle::ByLength)
|
|
|
|
|
{
|
|
|
|
|
pointObject[QLatin1String("angle")] = static_cast<int>(m_angle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return pointObject;
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-09 16:46:02 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
// Because artificial loop can lead to wrong clipping we must rollback current seam allowance points
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> VAbstractPiece::RollbackSeamAllowance(QVector<VRawSAPoint> points, const QLineF &cuttingEdge,
|
|
|
|
|
bool *success)
|
2019-01-09 16:46:02 +01:00
|
|
|
|
{
|
|
|
|
|
*success = false;
|
2019-11-03 09:01:32 +01:00
|
|
|
|
QVector<VRawSAPoint> clipped;
|
2019-01-09 16:46:02 +01:00
|
|
|
|
clipped.reserve(points.count()+1);
|
|
|
|
|
for (int i = points.count()-1; i > 0; --i)
|
|
|
|
|
{
|
|
|
|
|
QLineF segment(points.at(i), points.at(i-1));
|
|
|
|
|
QPointF crosPoint;
|
|
|
|
|
const QLineF::IntersectType type = cuttingEdge.intersect(segment, &crosPoint);
|
|
|
|
|
if (type != QLineF::NoIntersection
|
|
|
|
|
&& VGObject::IsPointOnLineSegment(crosPoint, segment.p1(), segment.p2())
|
2019-09-01 12:01:10 +02:00
|
|
|
|
&& IsSameDirection(cuttingEdge.p2(), cuttingEdge.p1(), crosPoint))
|
2019-01-09 16:46:02 +01:00
|
|
|
|
{
|
|
|
|
|
clipped.append(crosPoint);
|
|
|
|
|
for (int j=i-1; j>=0; --j)
|
|
|
|
|
{
|
|
|
|
|
clipped.append(points.at(j));
|
|
|
|
|
}
|
|
|
|
|
points = VGObject::GetReversePoints(clipped);
|
|
|
|
|
*success = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (not *success && points.size() > 1)
|
|
|
|
|
{
|
|
|
|
|
QPointF crosPoint;
|
|
|
|
|
QLineF secondLast(points.at(points.size()-2), points.at(points.size()-1));
|
|
|
|
|
QLineF::IntersectType type = secondLast.intersect(cuttingEdge, &crosPoint);
|
|
|
|
|
if (type != QLineF::NoIntersection && IsOutsidePoint(secondLast.p1(), secondLast.p2(), crosPoint))
|
|
|
|
|
{
|
|
|
|
|
points.append(crosPoint);
|
|
|
|
|
*success = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return points;
|
|
|
|
|
}
|
2019-01-28 19:35:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
bool VAbstractPiece::IsItemContained(const QRectF &parentBoundingRect, const QVector<QPointF> &shape, qreal &dX,
|
|
|
|
|
qreal &dY)
|
|
|
|
|
{
|
|
|
|
|
dX = 0;
|
|
|
|
|
dY = 0;
|
|
|
|
|
// single point differences
|
|
|
|
|
bool bInside = true;
|
|
|
|
|
|
|
|
|
|
for (auto p : shape)
|
|
|
|
|
{
|
|
|
|
|
qreal dPtX = 0;
|
|
|
|
|
qreal dPtY = 0;
|
|
|
|
|
if (not parentBoundingRect.contains(p))
|
|
|
|
|
{
|
|
|
|
|
if (p.x() < parentBoundingRect.left())
|
|
|
|
|
{
|
|
|
|
|
dPtX = parentBoundingRect.left() - p.x();
|
|
|
|
|
}
|
|
|
|
|
else if (p.x() > parentBoundingRect.right())
|
|
|
|
|
{
|
|
|
|
|
dPtX = parentBoundingRect.right() - p.x();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (p.y() < parentBoundingRect.top())
|
|
|
|
|
{
|
|
|
|
|
dPtY = parentBoundingRect.top() - p.y();
|
|
|
|
|
}
|
|
|
|
|
else if (p.y() > parentBoundingRect.bottom())
|
|
|
|
|
{
|
|
|
|
|
dPtY = parentBoundingRect.bottom() - p.y();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (qAbs(dPtX) > qAbs(dX))
|
|
|
|
|
{
|
|
|
|
|
dX = dPtX;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (qAbs(dPtY) > qAbs(dY))
|
|
|
|
|
{
|
|
|
|
|
dY = dPtY;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bInside = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return bInside;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
QVector<QPointF> VAbstractPiece::CorrectPosition(const QRectF &parentBoundingRect, QVector<QPointF> points)
|
|
|
|
|
{
|
|
|
|
|
qreal dX = 0;
|
|
|
|
|
qreal dY = 0;
|
|
|
|
|
if (not IsItemContained(parentBoundingRect, points, dX, dY))
|
|
|
|
|
{
|
|
|
|
|
for (int i =0; i < points.size(); ++i)
|
|
|
|
|
{
|
|
|
|
|
points[i] = QPointF(points.at(i).x() + dX, points.at(i).y() + dY);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return points;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
bool VAbstractPiece::FindGrainlineGeometry(const VGrainlineData& geom, const VContainer *pattern, qreal &length,
|
|
|
|
|
qreal &rotationAngle, QPointF &pos)
|
|
|
|
|
{
|
|
|
|
|
SCASSERT(pattern != nullptr)
|
|
|
|
|
|
|
|
|
|
const quint32 topPin = geom.TopPin();
|
|
|
|
|
const quint32 bottomPin = geom.BottomPin();
|
|
|
|
|
|
|
|
|
|
if (topPin != NULL_ID && bottomPin != NULL_ID)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
const auto topPinPoint = pattern->GeometricObject<VPointF>(topPin);
|
|
|
|
|
const auto bottomPinPoint = pattern->GeometricObject<VPointF>(bottomPin);
|
|
|
|
|
|
|
|
|
|
QLineF grainline(static_cast<QPointF>(*bottomPinPoint), static_cast<QPointF>(*topPinPoint));
|
|
|
|
|
length = grainline.length();
|
|
|
|
|
rotationAngle = grainline.angle();
|
|
|
|
|
|
|
|
|
|
if (not VFuzzyComparePossibleNulls(rotationAngle, 0))
|
|
|
|
|
{
|
|
|
|
|
grainline.setAngle(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pos = grainline.p1();
|
|
|
|
|
rotationAngle = qDegreesToRadians(rotationAngle);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
catch(const VExceptionBadId &)
|
|
|
|
|
{
|
|
|
|
|
// do nothing.
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Calculator cal1;
|
|
|
|
|
rotationAngle = cal1.EvalFormula(pattern->DataVariables(), geom.GetRotation());
|
|
|
|
|
rotationAngle = qDegreesToRadians(rotationAngle);
|
|
|
|
|
|
|
|
|
|
Calculator cal2;
|
|
|
|
|
length = cal2.EvalFormula(pattern->DataVariables(), geom.GetLength());
|
|
|
|
|
length = ToPixel(length, *pattern->GetPatternUnit());
|
|
|
|
|
}
|
|
|
|
|
catch(qmu::QmuParserError &e)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(e);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const quint32 centerPin = geom.CenterPin();
|
|
|
|
|
if (centerPin != NULL_ID)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
const auto centerPinPoint = pattern->GeometricObject<VPointF>(centerPin);
|
|
|
|
|
|
|
|
|
|
QLineF grainline(centerPinPoint->x(), centerPinPoint->y(),
|
|
|
|
|
centerPinPoint->x() + length / 2.0, centerPinPoint->y());
|
|
|
|
|
|
|
|
|
|
grainline.setAngle(qRadiansToDegrees(rotationAngle));
|
|
|
|
|
grainline = QLineF(grainline.p2(), grainline.p1());
|
|
|
|
|
grainline.setLength(length);
|
|
|
|
|
|
|
|
|
|
pos = grainline.p2();
|
|
|
|
|
}
|
|
|
|
|
catch(const VExceptionBadId &)
|
|
|
|
|
{
|
|
|
|
|
pos = geom.GetPos();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pos = geom.GetPos();
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
QVector<QPointF> VAbstractPiece::GrainlinePoints(const VGrainlineData &geom, const VContainer *pattern,
|
|
|
|
|
const QRectF &boundingRect, qreal &dAng)
|
|
|
|
|
{
|
|
|
|
|
SCASSERT(pattern != nullptr)
|
|
|
|
|
|
|
|
|
|
QPointF pt1;
|
|
|
|
|
qreal dLen = 0;
|
|
|
|
|
if ( not FindGrainlineGeometry(geom, pattern, dLen, dAng, pt1))
|
|
|
|
|
{
|
|
|
|
|
return QVector<QPointF>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qreal rotation = dAng;
|
|
|
|
|
|
|
|
|
|
QPointF pt2(pt1.x() + dLen * qCos(rotation), pt1.y() - dLen * qSin(rotation));
|
|
|
|
|
|
|
|
|
|
const qreal dArrowLen = ToPixel(0.5, *pattern->GetPatternUnit());
|
|
|
|
|
const qreal dArrowAng = M_PI/9;
|
|
|
|
|
|
|
|
|
|
QVector<QPointF> v;
|
|
|
|
|
v << pt1;
|
|
|
|
|
|
|
|
|
|
if (geom.GetArrowType() != ArrowType::atFront)
|
|
|
|
|
{
|
|
|
|
|
v << QPointF(pt1.x() + dArrowLen * qCos(rotation + dArrowAng),
|
|
|
|
|
pt1.y() - dArrowLen * qSin(rotation + dArrowAng));
|
|
|
|
|
v << QPointF(pt1.x() + dArrowLen * qCos(rotation - dArrowAng),
|
|
|
|
|
pt1.y() - dArrowLen * qSin(rotation - dArrowAng));
|
|
|
|
|
v << pt1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
v << pt2;
|
|
|
|
|
|
|
|
|
|
if (geom.GetArrowType() != ArrowType::atRear)
|
|
|
|
|
{
|
|
|
|
|
rotation += M_PI;
|
|
|
|
|
|
|
|
|
|
v << QPointF(pt2.x() + dArrowLen * qCos(rotation + dArrowAng),
|
|
|
|
|
pt2.y() - dArrowLen * qSin(rotation + dArrowAng));
|
|
|
|
|
v << QPointF(pt2.x() + dArrowLen * qCos(rotation - dArrowAng),
|
|
|
|
|
pt2.y() - dArrowLen * qSin(rotation - dArrowAng));
|
|
|
|
|
v << pt2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return CorrectPosition(boundingRect, v);
|
|
|
|
|
}
|