/************************************************************************ ** ** @file vcontour.h ** @author Roman Telezhynskyi ** @date 21 1, 2015 ** ** @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) 2013-2015 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 VCONTOUR_H #define VCONTOUR_H #include "vlayoutdef.h" #include #include #include class VContourData; class QPointF; class VLayoutDetail; class QLineF; class VContour { public: VContour(); VContour(int height, int width); VContour(const VContour &contour); VContour &operator=(const VContour &contour); virtual ~VContour(); void SetContour(const QVector &contour); QVector GetContour() const; unsigned int GetShift() const; void SetShift(unsigned int shift); int GetHeight() const; void SetHeight(int height); int GetWidth() const; void SetWidth(int width); QSizeF GetSize() const; QVector UniteWithContour(const VLayoutDetail &detail, int globalI, int detJ, BestFrom type) const; int EdgesCount() const; QLineF GlobalEdge(int i) const; QVector CutEdge(const QLineF &edge) const; const QPointF & at(int i) const; private: QSharedDataPointer d; void AppendWhole(QVector &contour, const VLayoutDetail &detail, int detJ) const; }; #endif // VCONTOUR_H