2016-03-08 18:48:10 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vcubicbezier.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 8 3, 2016
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2016 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
|
|
**
|
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#include "vcubicbezier.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
|
|
|
#include <QLineF>
|
|
|
|
|
2016-03-08 18:48:10 +01:00
|
|
|
#include "vcubicbezier_p.h"
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
class QPointF;
|
|
|
|
|
2016-03-08 18:48:10 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VCubicBezier::VCubicBezier()
|
|
|
|
: VAbstractCubicBezier(GOType::CubicBezier), d(new VCubicBezierData)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VCubicBezier::VCubicBezier(const VCubicBezier &curve)
|
|
|
|
: VAbstractCubicBezier(curve), d(curve.d)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VCubicBezier::VCubicBezier(const VPointF &p1, const VPointF &p2, const VPointF &p3, const VPointF &p4, quint32 idObject,
|
|
|
|
Draw mode)
|
|
|
|
: VAbstractCubicBezier(GOType::CubicBezier, idObject, mode), d(new VCubicBezierData(p1, p2, p3, p4))
|
|
|
|
{
|
|
|
|
CreateName();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VCubicBezier &VCubicBezier::operator=(const VCubicBezier &curve)
|
|
|
|
{
|
|
|
|
if ( &curve == this )
|
|
|
|
{
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
VAbstractCubicBezier::operator=(curve);
|
|
|
|
d = curve.d;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2016-04-10 13:40:04 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VCubicBezier VCubicBezier::Rotate(const QPointF &originPoint, qreal degrees, const QString &prefix) const
|
|
|
|
{
|
|
|
|
const VPointF p1 = GetP1().Rotate(originPoint, degrees);
|
|
|
|
const VPointF p2 = GetP2().Rotate(originPoint, degrees);
|
|
|
|
const VPointF p3 = GetP3().Rotate(originPoint, degrees);
|
|
|
|
const VPointF p4 = GetP4().Rotate(originPoint, degrees);
|
|
|
|
VCubicBezier curve(p1, p2, p3, p4);
|
|
|
|
curve.setName(name() + prefix);
|
|
|
|
return curve;
|
2016-09-10 20:40:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VCubicBezier VCubicBezier::Flip(const QLineF &axis, const QString &prefix) const
|
|
|
|
{
|
|
|
|
const VPointF p1 = GetP1().Flip(axis);
|
|
|
|
const VPointF p2 = GetP2().Flip(axis);
|
|
|
|
const VPointF p3 = GetP3().Flip(axis);
|
|
|
|
const VPointF p4 = GetP4().Flip(axis);
|
|
|
|
VCubicBezier curve(p1, p2, p3, p4);
|
|
|
|
curve.setName(name() + prefix);
|
|
|
|
return curve;
|
2016-04-10 13:40:04 +02:00
|
|
|
}
|
|
|
|
|
2016-03-10 14:55:04 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VCubicBezier::~VCubicBezier()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-03-08 18:48:10 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VPointF VCubicBezier::GetP1() const
|
|
|
|
{
|
|
|
|
return d->p1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VCubicBezier::SetP1(const VPointF &p)
|
|
|
|
{
|
|
|
|
d->p1 = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VPointF VCubicBezier::GetP2() const
|
|
|
|
{
|
|
|
|
return d->p2;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VCubicBezier::SetP2(const VPointF &p)
|
|
|
|
{
|
|
|
|
d->p2 = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VPointF VCubicBezier::GetP3() const
|
|
|
|
{
|
|
|
|
return d->p3;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VCubicBezier::SetP3(const VPointF &p)
|
|
|
|
{
|
|
|
|
d->p3 = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VPointF VCubicBezier::GetP4() const
|
|
|
|
{
|
|
|
|
return d->p4;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VCubicBezier::SetP4(const VPointF &p)
|
|
|
|
{
|
|
|
|
d->p4 = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
qreal VCubicBezier::GetStartAngle() const
|
|
|
|
{
|
2016-05-14 21:28:09 +02:00
|
|
|
return QLineF(GetP1(), GetP2()).angle();
|
2016-03-08 18:48:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
qreal VCubicBezier::GetEndAngle() const
|
|
|
|
{
|
2016-05-14 21:28:09 +02:00
|
|
|
return QLineF(GetP4(), GetP3()).angle();
|
2016-03-08 18:48:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief GetLength return length of cubic bezier curve.
|
|
|
|
* @return length.
|
|
|
|
*/
|
|
|
|
qreal VCubicBezier::GetLength() const
|
|
|
|
{
|
2016-05-14 21:28:09 +02:00
|
|
|
return LengthBezier (GetP1(), GetP2(), GetP3(), GetP4());
|
2016-03-08 18:48:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief GetPoints return list with cubic bezier curve points.
|
|
|
|
* @return list of points.
|
|
|
|
*/
|
|
|
|
QVector<QPointF> VCubicBezier::GetPoints() const
|
|
|
|
{
|
2016-05-14 21:28:09 +02:00
|
|
|
return GetCubicBezierPoints(GetP1(), GetP2(), GetP3(), GetP4());
|
2016-03-08 18:48:10 +01:00
|
|
|
}
|
2016-03-10 17:09:38 +01:00
|
|
|
|
2016-09-24 19:44:06 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
qreal VCubicBezier::GetC1Length() const
|
|
|
|
{
|
|
|
|
return QLineF(GetP1(), GetP2()).length();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
qreal VCubicBezier::GetC2Length() const
|
|
|
|
{
|
|
|
|
return QLineF(GetP4(), GetP3()).length();
|
|
|
|
}
|
|
|
|
|
2016-03-10 17:09:38 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QPointF VCubicBezier::GetControlPoint1() const
|
|
|
|
{
|
2016-05-14 21:28:09 +02:00
|
|
|
return GetP2();
|
2016-03-10 17:09:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QPointF VCubicBezier::GetControlPoint2() const
|
|
|
|
{
|
2016-05-14 21:28:09 +02:00
|
|
|
return GetP3();
|
2016-03-10 17:09:38 +01:00
|
|
|
}
|