/************************************************************************ ** ** @file vcubicbezierpath.h ** @author Roman Telezhynskyi ** @date 16 3, 2016 ** ** @brief ** @copyright ** This source code is part of the Valentina project, a pattern making ** program, whose allow create and modeling patterns of clothing. ** Copyright (C) 2016 Valentina project ** 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 . ** *************************************************************************/ #ifndef VCUBICBEZIERPATH_H #define VCUBICBEZIERPATH_H #include #include #include #include #include #include #include #include #include "vabstractcubicbezierpath.h" #include "vgeometrydef.h" #include "vpointf.h" class VCubicBezierPathData; class VCubicBezierPath final : public VAbstractCubicBezierPath { Q_DECLARE_TR_FUNCTIONS(VCubicBezierPath) // NOLINT public: explicit VCubicBezierPath(quint32 idObject = 0, Draw mode = Draw::Calculation); VCubicBezierPath(const VCubicBezierPath &curve); VCubicBezierPath(const QVector &points, quint32 idObject = 0, Draw mode = Draw::Calculation); VCubicBezierPath Rotate(const QPointF &originPoint, qreal degrees, const QString &prefix = QString()) const; VCubicBezierPath Flip(const QLineF &axis, const QString &prefix = QString()) const; VCubicBezierPath Move(qreal length, qreal angle, const QString &prefix = QString()) const; virtual ~VCubicBezierPath(); VCubicBezierPath &operator=(const VCubicBezierPath &curve); #ifdef Q_COMPILER_RVALUE_REFS VCubicBezierPath(VCubicBezierPath &&curve) Q_DECL_NOTHROW; VCubicBezierPath &operator=(VCubicBezierPath &&curve) Q_DECL_NOTHROW; #endif VPointF &operator[](int indx); const VPointF &at(int indx) const; void append(const VPointF &point); virtual qint32 CountSubSpl() const override; virtual qint32 CountPoints() const override; virtual void Clear() override; virtual VSpline GetSpline(qint32 index) const override; virtual qreal GetStartAngle () const override; virtual qreal GetEndAngle () const override; virtual qreal GetC1Length() const override; virtual qreal GetC2Length() const override; virtual QVector GetSplinePath() const override; QVector GetCubicPath() const; static qint32 CountSubSpl(qint32 size); static qint32 SubSplOffset(qint32 subSplIndex); static qint32 SubSplPointsCount(qint32 countSubSpl); protected: virtual VPointF FirstPoint() const override; virtual VPointF LastPoint() const override; private: QSharedDataPointer d; }; Q_DECLARE_TYPEINFO(VCubicBezierPath, Q_MOVABLE_TYPE); // NOLINT #endif // VCUBICBEZIERPATH_H