2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vspline.h
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-08-05 10:37:56 +02:00
|
|
|
#ifndef VSPLINE_H
|
|
|
|
#define VSPLINE_H
|
|
|
|
|
2014-06-25 16:08:12 +02:00
|
|
|
#include "vabstractcurve.h"
|
2013-12-29 17:48:57 +01:00
|
|
|
#include "vpointf.h"
|
2014-06-17 11:50:11 +02:00
|
|
|
#include <QLineF>
|
|
|
|
#include <QPointF>
|
2013-08-05 10:37:56 +02:00
|
|
|
|
2014-06-08 20:10:57 +02:00
|
|
|
class QPainterPath;
|
2014-08-20 15:02:41 +02:00
|
|
|
class VSplineData;
|
2013-11-12 13:48:45 +01:00
|
|
|
|
2013-10-26 22:42:54 +02:00
|
|
|
#define M_2PI 6.28318530717958647692528676655900576
|
2013-08-05 10:37:56 +02:00
|
|
|
|
|
|
|
/**
|
2013-12-18 12:13:32 +01:00
|
|
|
* @brief VSpline class that implements the spline.
|
2013-08-05 10:37:56 +02:00
|
|
|
*/
|
2014-06-25 16:08:12 +02:00
|
|
|
class VSpline :public VAbstractCurve
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
public:
|
2013-12-18 12:13:32 +01:00
|
|
|
VSpline();
|
|
|
|
VSpline (const VSpline &spline );
|
2013-12-29 17:48:57 +01:00
|
|
|
VSpline (VPointF p1, VPointF p4, qreal angle1, qreal angle2, qreal kAsm1, qreal kAsm2, qreal kCurve,
|
2014-06-12 09:22:29 +02:00
|
|
|
quint32 idObject = 0, Draw mode = Draw::Calculation);
|
2014-02-25 15:40:24 +01:00
|
|
|
VSpline (VPointF p1, QPointF p2, QPointF p3, VPointF p4, qreal kCurve, quint32 idObject = 0,
|
2014-06-12 09:22:29 +02:00
|
|
|
Draw mode = Draw::Calculation);
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual ~VSpline() Q_DECL_OVERRIDE;
|
2014-06-08 20:10:57 +02:00
|
|
|
VSpline &operator=(const VSpline &spl);
|
2014-06-01 10:32:39 +02:00
|
|
|
VPointF GetP1 () const;
|
2014-02-26 09:18:59 +01:00
|
|
|
QPointF GetP2 () const;
|
|
|
|
QPointF GetP3 () const;
|
|
|
|
VPointF GetP4 () const;
|
2015-06-02 15:53:19 +02:00
|
|
|
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual qreal GetStartAngle () const Q_DECL_OVERRIDE;
|
|
|
|
virtual qreal GetEndAngle() const Q_DECL_OVERRIDE;
|
2015-06-02 15:53:19 +02:00
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
qreal GetLength () const;
|
|
|
|
qreal GetKasm1() const;
|
|
|
|
qreal GetKasm2() const;
|
|
|
|
qreal GetKcurve() const;
|
2014-09-03 13:10:51 +02:00
|
|
|
void SetKcurve(qreal factor);
|
2014-10-23 10:38:57 +02:00
|
|
|
qreal LengthT(qreal t) const;
|
|
|
|
QPointF CutSpline ( qreal length, QPointF &spl1p2, QPointF &spl1p3, QPointF &spl2p2, QPointF &spl2p3) const;
|
|
|
|
QPointF CutSpline ( qreal length, VSpline &spl1, VSpline &spl2) const;
|
2013-08-05 10:37:56 +02:00
|
|
|
QVector<QPointF> GetPoints () const;
|
2014-05-11 20:15:32 +02:00
|
|
|
// cppcheck-suppress unusedFunction
|
2013-11-07 15:40:39 +01:00
|
|
|
static QVector<QPointF> SplinePoints(const QPointF &p1, const QPointF &p4, qreal angle1, qreal angle2, qreal kAsm1,
|
|
|
|
qreal kAsm2, qreal kCurve);
|
2015-02-12 11:55:09 +01:00
|
|
|
qreal ParamT(const QPointF &pBt) const;
|
2013-08-05 10:37:56 +02:00
|
|
|
protected:
|
2013-11-07 15:40:39 +01:00
|
|
|
static QVector<QPointF> GetPoints (const QPointF &p1, const QPointF &p2, const QPointF &p3, const QPointF &p4 );
|
2016-02-15 15:30:48 +01:00
|
|
|
virtual void CreateName() Q_DECL_OVERRIDE;
|
2013-08-05 10:37:56 +02:00
|
|
|
private:
|
2014-08-20 15:02:41 +02:00
|
|
|
QSharedDataPointer<VSplineData> d;
|
2014-09-11 19:15:07 +02:00
|
|
|
static qreal LengthBezier (const QPointF &p1, const QPointF &p2, const QPointF &p3, const QPointF &p4 );
|
2013-10-26 22:42:54 +02:00
|
|
|
static void PointBezier_r ( qreal x1, qreal y1, qreal x2, qreal y2, qreal x3, qreal y3, qreal x4, qreal y4,
|
|
|
|
qint16 level, QVector<qreal> &px, QVector<qreal> &py);
|
|
|
|
static qreal CalcSqDistance ( qreal x1, qreal y1, qreal x2, qreal y2);
|
2015-02-12 11:55:09 +01:00
|
|
|
QVector<qreal> CalcT(qreal curveCoord1, qreal curveCoord2, qreal curveCoord3, qreal curveCoord4,
|
|
|
|
qreal pointCoord) const;
|
2015-03-02 18:54:33 +01:00
|
|
|
static qint32 Cubic(QVector<qreal> &x, qreal a, qreal b, qreal c);
|
|
|
|
static int Sign(long double ld);
|
2013-08-05 10:37:56 +02:00
|
|
|
};
|
|
|
|
|
2015-11-25 19:56:17 +01:00
|
|
|
Q_DECLARE_TYPEINFO(VSpline, Q_MOVABLE_TYPE);
|
|
|
|
|
2013-08-05 10:37:56 +02:00
|
|
|
#endif // VSPLINE_H
|