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
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2013-11-15 13:41:26 +01:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/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
|
|
|
|
|
2014-06-17 11:50:11 +02:00
|
|
|
#include <QMetaType>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QSharedDataPointer>
|
|
|
|
#include <QString>
|
|
|
|
#include <QTypeInfo>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
|
|
#include "vpointf.h"
|
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();
|
2016-09-10 13:19:32 +02:00
|
|
|
VFSplinePoint(const VPointF &pSpline, qreal kAsm1, qreal angle1, qreal kAsm2, qreal angle2);
|
2016-03-04 17:08:29 +01:00
|
|
|
VFSplinePoint(const VFSplinePoint &point);
|
|
|
|
~VFSplinePoint();
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto operator=(const VFSplinePoint &point) -> VFSplinePoint &;
|
2024-02-19 10:14:02 +01:00
|
|
|
|
2023-07-13 16:49:20 +02:00
|
|
|
VFSplinePoint(VFSplinePoint &&point) noexcept;
|
2023-07-15 09:58:28 +02:00
|
|
|
auto operator=(VFSplinePoint &&point) noexcept -> VFSplinePoint &;
|
2017-04-19 12:27:17 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto P() const -> VPointF;
|
2023-07-15 09:58:28 +02:00
|
|
|
void SetP(const VPointF &value);
|
2023-05-03 13:07:02 +02:00
|
|
|
auto Angle1() const -> qreal;
|
2023-07-15 09:58:28 +02:00
|
|
|
void SetAngle1(const qreal &value);
|
|
|
|
void SetAngle2(const qreal &value);
|
2023-05-03 13:07:02 +02:00
|
|
|
auto Angle2() const -> qreal;
|
|
|
|
auto KAsm1() const -> qreal;
|
2023-07-15 09:58:28 +02:00
|
|
|
void SetKAsm1(const qreal &value);
|
2023-05-03 13:07:02 +02:00
|
|
|
auto KAsm2() const -> qreal;
|
2023-07-15 09:58:28 +02:00
|
|
|
void SetKAsm2(const qreal &value);
|
|
|
|
|
2016-03-04 17:08:29 +01:00
|
|
|
protected:
|
|
|
|
QSharedDataPointer<VFSplinePointData> d;
|
|
|
|
};
|
|
|
|
|
2023-07-15 09:58:28 +02:00
|
|
|
Q_DECLARE_METATYPE(VFSplinePoint) // NOLINT
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_DECLARE_TYPEINFO(VFSplinePoint, Q_MOVABLE_TYPE); // NOLINT
|
2016-03-04 17:08:29 +01:00
|
|
|
|
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-09-10 13:19:32 +02:00
|
|
|
VSplinePoint(const VPointF &pSpline, qreal angle1, const QString &angle1F, qreal angle2, const QString &angle2F,
|
2016-03-04 17:08:29 +01:00
|
|
|
qreal length1, const QString &length1F, qreal length2, const QString &length2F);
|
2014-02-26 09:18:59 +01:00
|
|
|
VSplinePoint(const VSplinePoint &point);
|
2014-08-20 15:21:43 +02:00
|
|
|
~VSplinePoint();
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto operator=(const VSplinePoint &point) -> VSplinePoint &;
|
2024-02-19 10:14:02 +01:00
|
|
|
|
2023-07-13 16:49:20 +02:00
|
|
|
VSplinePoint(VSplinePoint &&point) noexcept;
|
2023-07-15 09:58:28 +02:00
|
|
|
auto operator=(VSplinePoint &&point) noexcept -> VSplinePoint &;
|
2017-04-19 12:27:17 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto P() const -> VPointF;
|
2023-07-15 09:58:28 +02:00
|
|
|
void SetP(const VPointF &value);
|
2016-03-04 17:08:29 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto Angle1() const -> qreal;
|
|
|
|
auto Angle1Formula() const -> QString;
|
2023-07-15 09:58:28 +02:00
|
|
|
void SetAngle1(const qreal &value, const QString &angle1F);
|
2016-03-04 17:08:29 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto Angle2() const -> qreal;
|
|
|
|
auto Angle2Formula() const -> QString;
|
2023-07-15 09:58:28 +02:00
|
|
|
void SetAngle2(const qreal &value, const QString &angle2F);
|
2016-03-04 17:08:29 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto Length1() const -> qreal;
|
|
|
|
auto Length1Formula() const -> QString;
|
2023-07-15 09:58:28 +02:00
|
|
|
void SetLength1(const qreal &value, const QString &length1F);
|
2016-03-04 17:08:29 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto Length2() const -> qreal;
|
|
|
|
auto Length2Formula() const -> QString;
|
2023-07-15 09:58:28 +02:00
|
|
|
void SetLength2(const qreal &value, const QString &length2F);
|
2016-03-05 22:06:54 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto IsMovable() const -> bool;
|
|
|
|
|
|
|
|
auto ToJson() const -> QJsonObject;
|
2019-08-29 14:01:27 +02:00
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2023-07-15 09:58:28 +02:00
|
|
|
Q_DECLARE_METATYPE(VSplinePoint) // NOLINT
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_DECLARE_TYPEINFO(VSplinePoint, Q_MOVABLE_TYPE); // NOLINT
|
2013-08-09 08:49:34 +02:00
|
|
|
|
|
|
|
#endif // VSPLINEPOINT_H
|