2016-03-08 18:48:10 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vcubicbezier.h
|
|
|
|
** @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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VCUBICBEZIER_H
|
|
|
|
#define VCUBICBEZIER_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
|
|
|
#include <QPointF>
|
|
|
|
#include <QSharedDataPointer>
|
|
|
|
#include <QString>
|
|
|
|
#include <QTypeInfo>
|
|
|
|
#include <QVector>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
2016-03-08 18:48:10 +01:00
|
|
|
#include "vabstractcubicbezier.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "vgeometrydef.h"
|
2016-03-08 18:48:10 +01:00
|
|
|
#include "vpointf.h"
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
class QPointF;
|
2016-03-08 18:48:10 +01:00
|
|
|
class VCubicBezierData;
|
|
|
|
|
|
|
|
class VCubicBezier : public VAbstractCubicBezier
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VCubicBezier();
|
|
|
|
VCubicBezier(const VCubicBezier &curve);
|
|
|
|
VCubicBezier(const VPointF &p1, const VPointF &p2, const VPointF &p3, const VPointF &p4, quint32 idObject = 0,
|
|
|
|
Draw mode = Draw::Calculation);
|
|
|
|
VCubicBezier &operator=(const VCubicBezier &curve);
|
2016-04-10 13:40:04 +02:00
|
|
|
VCubicBezier Rotate(const QPointF &originPoint, qreal degrees, const QString &prefix = QString()) const;
|
2016-09-10 20:40:30 +02:00
|
|
|
VCubicBezier Flip(const QLineF &axis, const QString &prefix = QString()) const;
|
2016-10-04 16:34:37 +02:00
|
|
|
VCubicBezier Move(qreal length, qreal angle, const QString &prefix = QString()) const;
|
2016-03-10 14:55:04 +01:00
|
|
|
virtual ~VCubicBezier();
|
2016-03-08 18:48:10 +01:00
|
|
|
|
|
|
|
virtual VPointF GetP1() const Q_DECL_OVERRIDE;
|
|
|
|
void SetP1(const VPointF &p);
|
|
|
|
|
2016-06-30 15:02:59 +02:00
|
|
|
virtual VPointF GetP2() const Q_DECL_OVERRIDE;
|
2016-03-08 18:48:10 +01:00
|
|
|
void SetP2(const VPointF &p);
|
|
|
|
|
2016-06-30 15:02:59 +02:00
|
|
|
virtual VPointF GetP3() const Q_DECL_OVERRIDE;
|
2016-03-08 18:48:10 +01:00
|
|
|
void SetP3(const VPointF &p);
|
|
|
|
|
|
|
|
virtual VPointF GetP4() const Q_DECL_OVERRIDE;
|
|
|
|
void SetP4(const VPointF &p);
|
|
|
|
|
|
|
|
virtual qreal GetStartAngle() const Q_DECL_OVERRIDE;
|
|
|
|
virtual qreal GetEndAngle() const Q_DECL_OVERRIDE;
|
|
|
|
virtual qreal GetLength() const Q_DECL_OVERRIDE;
|
|
|
|
virtual QVector<QPointF> GetPoints() const Q_DECL_OVERRIDE;
|
|
|
|
|
2016-09-24 19:44:06 +02:00
|
|
|
virtual qreal GetC1Length() const Q_DECL_OVERRIDE;
|
|
|
|
virtual qreal GetC2Length() const Q_DECL_OVERRIDE;
|
|
|
|
|
2016-03-10 17:09:38 +01:00
|
|
|
protected:
|
|
|
|
virtual QPointF GetControlPoint1() const Q_DECL_OVERRIDE;
|
|
|
|
virtual QPointF GetControlPoint2() const Q_DECL_OVERRIDE;
|
|
|
|
|
2016-03-08 18:48:10 +01:00
|
|
|
private:
|
|
|
|
QSharedDataPointer<VCubicBezierData> d;
|
|
|
|
};
|
|
|
|
|
|
|
|
Q_DECLARE_TYPEINFO(VCubicBezier, Q_MOVABLE_TYPE);
|
|
|
|
|
|
|
|
#endif // VCUBICBEZIER_H
|