valentina/src/geometry/vsplinepath.h

180 lines
4.9 KiB
C
Raw Normal View History

/************************************************************************
**
** @file vsplinepath.h
** @author Roman Telezhinsky <dismine@gmail.com>
** @date November 15, 2013
**
** @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 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/>.
**
*************************************************************************/
2013-08-09 08:49:34 +02:00
#ifndef VSPLINEPATH_H
#define VSPLINEPATH_H
#include "vsplinepoint.h"
#include "vpointf.h"
2013-08-09 08:49:34 +02:00
#include "vspline.h"
#include "vgobject.h"
2013-10-26 22:42:54 +02:00
#include <QApplication>
#include "../container/vcontainer.h"
2013-08-09 08:49:34 +02:00
namespace SplinePoint
{
/**
* @brief The Position enum
*/
enum Position { FirstPoint, LastPoint };
Q_DECLARE_FLAGS(Positions, Position)
2013-08-09 08:49:34 +02:00
}
Q_DECLARE_OPERATORS_FOR_FLAGS( SplinePoint::Positions )
2013-08-09 08:49:34 +02:00
/**
* @brief The VSplinePath клас, що розраховує шлях сплайнів.
*/
class VSplinePath :public VGObject
{
Q_DECLARE_TR_FUNCTIONS(VSplinePath)
2013-08-09 08:49:34 +02:00
public:
/**
* @brief VSplinePath конструктор по замовчуванню.
*/
VSplinePath(qreal kCurve = 1, qint64 idObject = 0, Draw::Draws mode = Draw::Calculation);
/**
* @brief VSplinePath
* @param splPath
*/
2013-10-26 22:42:54 +02:00
VSplinePath(const VSplinePath& splPath);
2013-08-09 08:49:34 +02:00
/**
* @brief append додає точку сплайну до шляху.
* @param point точка.
*/
void append(const VSplinePoint &point);
/**
* @brief Count
* @return
*/
2013-10-26 22:42:54 +02:00
qint32 Count() const;
/**
* @brief CountPoint
* @return
*/
2013-10-26 22:42:54 +02:00
inline qint32 CountPoint() const {return path.size();}
/**
* @brief GetSpline
* @param index
* @return
*/
2013-10-26 22:42:54 +02:00
VSpline GetSpline(qint32 index) const;
/**
* @brief GetPath
* @return
*/
2013-10-26 22:42:54 +02:00
QPainterPath GetPath() const;
/**
* @brief GetPathPoints
* @return
*/
2013-10-26 22:42:54 +02:00
QVector<QPointF> GetPathPoints() const;
/**
* @brief GetSplinePath
* @return
*/
2013-10-26 22:42:54 +02:00
inline QVector<VSplinePoint> GetSplinePath() const {return path;}
/**
* @brief GetLength
* @return
*/
2013-10-26 22:42:54 +02:00
qreal GetLength() const;
/**
* @brief UpdatePoint
* @param indexSpline
* @param pos
* @param point
*/
void UpdatePoint(qint32 indexSpline, const SplinePoint::Position &pos, const VSplinePoint &point);
/**
* @brief GetSplinePoint
* @param indexSpline
* @param pos
* @return
*/
2013-10-26 22:42:54 +02:00
VSplinePoint GetSplinePoint(qint32 indexSpline, SplinePoint::Position pos) const;
2013-08-09 08:49:34 +02:00
/**
* @brief Clear очищає шлях сплайнів.
*/
2013-10-26 22:42:54 +02:00
inline void Clear() {path.clear();}
/**
* @brief getKCurve
* @return
*/
2013-10-26 22:42:54 +02:00
inline qreal getKCurve() const {return kCurve;}
/**
* @brief setKCurve
* @param value
*/
2013-10-26 22:42:54 +02:00
inline void setKCurve(const qreal &value) {kCurve = value;}
/**
* @brief GetPoint
* @return
*/
2013-10-26 22:42:54 +02:00
inline const QVector<VSplinePoint> *GetPoint() const {return &path;}
/**
* @brief operator =
* @param path
* @return
*/
2013-10-26 22:42:54 +02:00
VSplinePath &operator=(const VSplinePath &path);
/**
* @brief operator []
* @param indx
* @return
*/
VSplinePoint &operator[](ptrdiff_t indx);
const VSplinePoint &at(ptrdiff_t indx) const;
/**
* @brief CutSplinePath
* @param length
* @param p1
* @param p2
* @param spl1p3
* @param spl2p2
* @return
*/
QPointF CutSplinePath(qreal length, qint32 &p1, qint32 &p2, QPointF &spl1p2, QPointF &spl1p3, QPointF &spl2p2,
QPointF &spl2p3) const;
virtual QString name() const{return _name;}
qint32 getMaxCountPoints() const;
void setMaxCountPoints(const qint32 &value);
2013-08-09 08:49:34 +02:00
protected:
/**
* @brief path вектор з точок сплайна.
*/
QVector<VSplinePoint> path;
/**
* @brief kCurve
*/
2013-10-26 22:42:54 +02:00
qreal kCurve;
qint32 maxCountPoints;
2013-08-09 08:49:34 +02:00
};
#endif // VSPLINEPATH_H