Merged in ValentinaZhuravska/valentina/feature (pull request #77)
The user must select points in a clockwise direction --HG-- branch : develop
This commit is contained in:
commit
e0f0c51453
|
@ -506,3 +506,37 @@ QPointF VAbstractDetail::SingleParallelPoint(const QLineF &line, const qreal &an
|
|||
pLine.setLength( width );
|
||||
return pLine.p2();
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
qreal VAbstractDetail::SumTrapezoids(const QVector<QPointF> &points)
|
||||
{
|
||||
// Calculation a polygon area through the sum of the areas of trapezoids
|
||||
qreal s, res = 0;
|
||||
const int n = points.size();
|
||||
|
||||
if(n > 2)
|
||||
{
|
||||
for (int i = 0; i < n; ++i)
|
||||
{
|
||||
if (i == 0)
|
||||
{
|
||||
s = points.at(i).x()*(points.at(n-1).y() - points.at(i+1).y()); //if i == 0, then y[i-1] replace on y[n-1]
|
||||
res += s;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (i == n-1)
|
||||
{
|
||||
s = points.at(i).x()*(points.at(i-1).y() - points.at(0).y()); // if i == n-1, then y[i+1] replace on y[0]
|
||||
res += s;
|
||||
}
|
||||
else
|
||||
{
|
||||
s = points.at(i).x()*(points.at(i-1).y() - points.at(i+1).y());
|
||||
res += s;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
|
|
@ -65,6 +65,8 @@ public:
|
|||
void setWidth(const qreal &value);
|
||||
|
||||
static QVector<QPointF> Equidistant(const QVector<QPointF> &points, const EquidistantType &eqv, qreal width);
|
||||
static qreal SumTrapezoids(const QVector<QPointF> &points);
|
||||
|
||||
|
||||
protected:
|
||||
static QVector<QPointF> RemoveDublicates(const QVector<QPointF> &points);
|
||||
|
|
|
@ -288,42 +288,9 @@ qint64 VLayoutDetail::Square() const
|
|||
return 0;
|
||||
}
|
||||
|
||||
const int n = d->layoutAllowence.count();
|
||||
qreal s, res = 0;
|
||||
qint64 sq = 0;
|
||||
const qreal res = SumTrapezoids(d->layoutAllowence);
|
||||
|
||||
QVector<qreal> x;
|
||||
QVector<qreal> y;
|
||||
|
||||
for (int i=0; i < n; ++i)
|
||||
{
|
||||
x.append(d->layoutAllowence.at(i).x());
|
||||
y.append(d->layoutAllowence.at(i).y());
|
||||
}
|
||||
|
||||
// Calculation a polygon area through the sum of the areas of trapezoids
|
||||
for (int i = 0; i < n; ++i)
|
||||
{
|
||||
if (i == 0)
|
||||
{
|
||||
s = x.at(i)*(y.at(n-1) - y.at(i+1)); //if i == 0, then y[i-1] replace on y[n-1]
|
||||
res += s;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (i == n-1)
|
||||
{
|
||||
s = x.at(i)*(y.at(i-1) - y.at(0)); // if i == n-1, then y[i+1] replace on y[0]
|
||||
res += s;
|
||||
}
|
||||
else
|
||||
{
|
||||
s = x.at(i)*(y.at(i-1) - y.at(i+1));
|
||||
res += s;
|
||||
}
|
||||
}
|
||||
}
|
||||
sq = qFloor(qAbs(res/2.0));
|
||||
const qint64 sq = qFloor(qAbs(res/2.0));
|
||||
return sq;
|
||||
}
|
||||
|
||||
|
|
|
@ -463,19 +463,25 @@ bool DialogDetail::DetailIsValid() const
|
|||
QByteArray byteArray;
|
||||
QBuffer buffer(&byteArray);
|
||||
pixmap.save(&buffer, "PNG");
|
||||
QString url = QString("<img src=\"data:image/png;base64,") + byteArray.toBase64() + "\"/>";
|
||||
QString url = QString("<img src=\"data:image/png;base64,") + byteArray.toBase64() + QLatin1Literal("\"/> ");
|
||||
|
||||
if (ui.listWidget->count() < 3)
|
||||
{
|
||||
url += QString(" ") + tr("You need more points!");
|
||||
url += tr("You need more points!");
|
||||
ui.helpLabel->setText(url);
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
if(not DetailIsClockwise())
|
||||
{
|
||||
url += tr("You have to choose points in a clockwise direction!");
|
||||
ui.helpLabel->setText(url);
|
||||
return false;
|
||||
}
|
||||
if (FirstPointEqualLast())
|
||||
{
|
||||
url += QString(" ") +tr("First point can not equal the last point!");
|
||||
url += tr("First point can not equal the last point!");
|
||||
ui.helpLabel->setText(url);
|
||||
return false;
|
||||
}
|
||||
|
@ -488,7 +494,7 @@ bool DialogDetail::DetailIsValid() const
|
|||
|
||||
if (QString::compare(previousRow, nextRow) == 0)
|
||||
{
|
||||
url += QString(" ") +tr("You have double points!");
|
||||
url += tr("You have double points!");
|
||||
ui.helpLabel->setText(url);
|
||||
return false;
|
||||
}
|
||||
|
@ -518,3 +524,26 @@ bool DialogDetail::FirstPointEqualLast() const
|
|||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
bool DialogDetail::DetailIsClockwise() const
|
||||
{
|
||||
if(ui.listWidget->count() < 3)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
VDetail detail;
|
||||
for (qint32 i = 0; i < ui.listWidget->count(); ++i)
|
||||
{
|
||||
QListWidgetItem *item = ui.listWidget->item(i);
|
||||
detail.append( qvariant_cast<VNodeDetail>(item->data(Qt::UserRole)));
|
||||
}
|
||||
const QVector<QPointF> points = detail.ContourPoints(data);
|
||||
|
||||
const qreal res = VDetail::SumTrapezoids(points);
|
||||
if (res < 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -78,6 +78,7 @@ private:
|
|||
bool flagWidth;
|
||||
bool DetailIsValid() const;
|
||||
bool FirstPointEqualLast() const;
|
||||
bool DetailIsClockwise() const;
|
||||
|
||||
void NewItem(quint32 id, const Tool &typeTool, const NodeDetail &typeNode,
|
||||
qreal mx = 0, qreal my = 0, bool reverse = false);
|
||||
|
|
Loading…
Reference in New Issue
Block a user