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 vsplinepoint.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-09 08:49:34 +02:00
|
|
|
#ifndef VSPLINEPOINT_H
|
|
|
|
#define VSPLINEPOINT_H
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
#include "vpointf.h"
|
2014-06-17 11:50:11 +02:00
|
|
|
#include <QMetaType>
|
2013-08-09 08:49:34 +02:00
|
|
|
|
2016-03-04 17:08:29 +01:00
|
|
|
class VFSplinePointData;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The VFSplinePoint class keep information about point in spline path. Each point have two angles and two
|
|
|
|
* coefficient. Point represent at the same time first and last point of a spline.
|
|
|
|
*/
|
|
|
|
class VFSplinePoint
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VFSplinePoint();
|
|
|
|
VFSplinePoint(VPointF pSpline, qreal kAsm1, qreal angle1, qreal kAsm2, qreal angle2);
|
|
|
|
VFSplinePoint(const VFSplinePoint &point);
|
|
|
|
VFSplinePoint &operator=(const VFSplinePoint &point);
|
|
|
|
~VFSplinePoint();
|
|
|
|
|
|
|
|
VPointF P() const;
|
|
|
|
void SetP(const VPointF &value);
|
|
|
|
qreal Angle1() const;
|
|
|
|
void SetAngle1(const qreal &value);
|
|
|
|
void SetAngle2(const qreal &value);
|
|
|
|
qreal Angle2() const;
|
|
|
|
qreal KAsm1() const;
|
|
|
|
void SetKAsm1(const qreal &value);
|
|
|
|
qreal KAsm2() const;
|
|
|
|
void SetKAsm2(const qreal &value);
|
|
|
|
protected:
|
|
|
|
QSharedDataPointer<VFSplinePointData> d;
|
|
|
|
};
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(VFSplinePoint)
|
|
|
|
Q_DECLARE_TYPEINFO(VFSplinePoint, Q_MOVABLE_TYPE);
|
|
|
|
|
2014-08-20 15:21:43 +02:00
|
|
|
class VSplinePointData;
|
|
|
|
|
2013-08-09 08:49:34 +02:00
|
|
|
/**
|
2014-01-21 19:44:01 +01:00
|
|
|
* @brief The VSplinePoint class keep information about point in spline path. Each point have two angles and two
|
2016-03-04 17:08:29 +01:00
|
|
|
* lengths. Point represent at the same time first and last point of a spline.
|
2013-08-09 08:49:34 +02:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VSplinePoint
|
|
|
|
{
|
2013-08-09 08:49:34 +02:00
|
|
|
public:
|
2014-06-01 09:56:11 +02:00
|
|
|
VSplinePoint();
|
2016-03-04 17:08:29 +01:00
|
|
|
VSplinePoint(VPointF pSpline, qreal angle1, const QString &angle1F, qreal angle2, const QString &angle2F,
|
|
|
|
qreal length1, const QString &length1F, qreal length2, const QString &length2F);
|
2014-02-26 09:18:59 +01:00
|
|
|
VSplinePoint(const VSplinePoint &point);
|
2014-06-01 09:56:11 +02:00
|
|
|
VSplinePoint &operator=(const VSplinePoint &point);
|
2014-08-20 15:21:43 +02:00
|
|
|
~VSplinePoint();
|
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
VPointF P() const;
|
|
|
|
void SetP(const VPointF &value);
|
2016-03-04 17:08:29 +01:00
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
qreal Angle1() const;
|
2016-03-04 17:08:29 +01:00
|
|
|
QString Angle1Formula() const;
|
|
|
|
void SetAngle1(const qreal &value, const QString &angle1F);
|
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
qreal Angle2() const;
|
2016-03-04 17:08:29 +01:00
|
|
|
QString Angle2Formula() const;
|
|
|
|
void SetAngle2(const qreal &value, const QString &angle2F);
|
|
|
|
|
|
|
|
qreal Length1() const;
|
|
|
|
QString Length1Formula() const;
|
|
|
|
void SetLength1(const qreal &value, const QString &length1F);
|
|
|
|
|
|
|
|
qreal Length2() const;
|
|
|
|
QString Length2Formula() const;
|
|
|
|
void SetLength2(const qreal &value, const QString &length2F);
|
2013-08-09 08:49:34 +02:00
|
|
|
protected:
|
2014-08-20 15:21:43 +02:00
|
|
|
QSharedDataPointer<VSplinePointData> d;
|
2013-08-09 08:49:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(VSplinePoint)
|
2015-11-25 19:56:17 +01:00
|
|
|
Q_DECLARE_TYPEINFO(VSplinePoint, Q_MOVABLE_TYPE);
|
2013-08-09 08:49:34 +02:00
|
|
|
|
|
|
|
#endif // VSPLINEPOINT_H
|