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 vtoolspline.cpp
|
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.
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
** <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-05 10:37:56 +02:00
|
|
|
#include "vtoolspline.h"
|
2013-11-06 18:06:00 +01:00
|
|
|
#include "../../geometry/vspline.h"
|
2014-02-21 14:04:39 +01:00
|
|
|
#include "../../dialogs/tools/dialogspline.h"
|
2014-06-09 19:39:18 +02:00
|
|
|
#include "../../undocommands/movespline.h"
|
2013-08-20 12:26:02 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VToolSpline::ToolType = QStringLiteral("simple");
|
2013-08-05 10:37:56 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-12 09:22:29 +02:00
|
|
|
VToolSpline::VToolSpline(VPattern *doc, VContainer *data, quint32 id, const Source &typeCreation,
|
2014-03-04 17:50:54 +01:00
|
|
|
QGraphicsItem *parent) :VAbstractSpline(doc, data, id, parent)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VSpline *spl = data->GeometricObject<const VSpline *>(id);
|
2013-08-05 10:37:56 +02:00
|
|
|
QPainterPath path;
|
2013-12-29 17:48:57 +01:00
|
|
|
path.addPath(spl->GetPath());
|
2013-08-05 10:37:56 +02:00
|
|
|
path.setFillRule( Qt::WindingFill );
|
|
|
|
this->setPath(path);
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(Qt::black, qApp->toPixel(qApp->widthHairLine())/factor));
|
2013-08-05 10:37:56 +02:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
2014-01-03 16:13:43 +01:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsFocusable, true);
|
2013-08-05 10:37:56 +02:00
|
|
|
this->setAcceptHoverEvents(true);
|
|
|
|
|
2014-06-12 09:22:29 +02:00
|
|
|
VControlPointSpline *controlPoint1 = new VControlPointSpline(1, SplinePointPosition::FirstPoint, spl->GetP2(),
|
2013-12-29 17:48:57 +01:00
|
|
|
spl->GetP1().toQPointF(), this);
|
2013-08-05 10:37:56 +02:00
|
|
|
connect(controlPoint1, &VControlPointSpline::ControlPointChangePosition, this,
|
2013-08-09 08:49:34 +02:00
|
|
|
&VToolSpline::ControlPointChangePosition);
|
|
|
|
connect(this, &VToolSpline::RefreshLine, controlPoint1, &VControlPointSpline::RefreshLine);
|
|
|
|
connect(this, &VToolSpline::setEnabledPoint, controlPoint1, &VControlPointSpline::setEnabledPoint);
|
|
|
|
controlPoints.append(controlPoint1);
|
2013-08-05 10:37:56 +02:00
|
|
|
|
2014-06-12 09:22:29 +02:00
|
|
|
VControlPointSpline *controlPoint2 = new VControlPointSpline(1, SplinePointPosition::LastPoint, spl->GetP3(),
|
2013-12-29 17:48:57 +01:00
|
|
|
spl->GetP4().toQPointF(), this);
|
2013-08-05 10:37:56 +02:00
|
|
|
connect(controlPoint2, &VControlPointSpline::ControlPointChangePosition, this,
|
2013-08-09 08:49:34 +02:00
|
|
|
&VToolSpline::ControlPointChangePosition);
|
|
|
|
connect(this, &VToolSpline::RefreshLine, controlPoint2, &VControlPointSpline::RefreshLine);
|
|
|
|
connect(this, &VToolSpline::setEnabledPoint, controlPoint2, &VControlPointSpline::setEnabledPoint);
|
|
|
|
controlPoints.append(controlPoint2);
|
2013-08-05 10:37:56 +02:00
|
|
|
|
2014-06-12 09:22:29 +02:00
|
|
|
if (typeCreation == Source::FromGui)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
AddToFile();
|
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSpline::setDialog()
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogSpline *dialogTool = qobject_cast<DialogSpline*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2013-12-29 17:48:57 +01:00
|
|
|
const VSpline *spl = VAbstractTool::data.GeometricObject<const VSpline *>(id);
|
2014-02-06 14:57:23 +01:00
|
|
|
dialogTool->setP1(spl->GetP1().id());
|
|
|
|
dialogTool->setP4(spl->GetP4().id());
|
|
|
|
dialogTool->setAngle1(spl->GetAngle1());
|
|
|
|
dialogTool->setAngle2(spl->GetAngle2());
|
|
|
|
dialogTool->setKAsm1(spl->GetKasm1());
|
|
|
|
dialogTool->setKAsm2(spl->GetKasm2());
|
|
|
|
dialogTool->setKCurve(spl->GetKcurve());
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-02-25 15:02:09 +01:00
|
|
|
void VToolSpline::Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc,
|
2013-11-04 21:35:15 +01:00
|
|
|
VContainer *data)
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogSpline *dialogTool = qobject_cast<DialogSpline*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2014-05-30 13:50:41 +02:00
|
|
|
const quint32 p1 = dialogTool->getP1();
|
|
|
|
const quint32 p4 = dialogTool->getP4();
|
|
|
|
const qreal kAsm1 = dialogTool->getKAsm1();
|
|
|
|
const qreal kAsm2 = dialogTool->getKAsm2();
|
|
|
|
const qreal angle1 = dialogTool->getAngle1();
|
|
|
|
const qreal angle2 = dialogTool->getAngle2();
|
|
|
|
const qreal kCurve = dialogTool->getKCurve();
|
2013-08-13 18:48:36 +02:00
|
|
|
Create(0, p1, p4, kAsm1, kAsm2, angle1, angle2, kCurve, scene, doc, data, Document::FullParse,
|
2014-06-12 09:22:29 +02:00
|
|
|
Source::FromGui);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-02-25 15:40:24 +01:00
|
|
|
void VToolSpline::Create(const quint32 _id, const quint32 &p1, const quint32 &p4, const qreal &kAsm1,
|
2013-08-13 18:48:36 +02:00
|
|
|
const qreal kAsm2, const qreal &angle1, const qreal &angle2, const qreal &kCurve,
|
2014-02-25 15:02:09 +01:00
|
|
|
VMainGraphicsScene *scene, VPattern *doc, VContainer *data,
|
2014-06-12 09:22:29 +02:00
|
|
|
const Document &parse, const Source &typeCreation)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
VPointF point1 = *data->GeometricObject<const VPointF *>(p1);
|
|
|
|
VPointF point4 = *data->GeometricObject<const VPointF *>(p4);
|
|
|
|
VSpline *spline = new VSpline(point1, point4, angle1, angle2, kAsm1, kAsm2, kCurve);
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 id = _id;
|
2014-06-12 09:22:29 +02:00
|
|
|
if (typeCreation == Source::FromGui)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
id = data->AddGObject(spline);
|
2014-03-19 19:27:11 +01:00
|
|
|
data->AddLengthSpline(spline->name(), qApp->fromPixel(spline->GetLength()));
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
data->UpdateGObject(id, spline);
|
2014-03-19 19:27:11 +01:00
|
|
|
data->AddLengthSpline(spline->name(), qApp->fromPixel(spline->GetLength()));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse != Document::FullParse)
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->UpdateToolData(id, data);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
2014-06-12 09:22:29 +02:00
|
|
|
VDrawTool::AddRecord(id, Tool::SplineTool, doc);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
VToolSpline *spl = new VToolSpline(doc, data, id, typeCreation);
|
2013-08-13 18:48:36 +02:00
|
|
|
scene->addItem(spl);
|
|
|
|
connect(spl, &VToolSpline::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
2013-10-16 11:17:34 +02:00
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, spl, &VToolSpline::SetFactor);
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->AddTool(id, spl);
|
|
|
|
doc->IncrementReferens(p1);
|
|
|
|
doc->IncrementReferens(p4);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-12 09:22:29 +02:00
|
|
|
void VToolSpline::ControlPointChangePosition(const qint32 &indexSpline, const SplinePointPosition &position,
|
2013-11-07 15:40:39 +01:00
|
|
|
const QPointF &pos)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-09 08:49:34 +02:00
|
|
|
Q_UNUSED(indexSpline);
|
2013-12-29 17:48:57 +01:00
|
|
|
const VSpline *spline = VAbstractTool::data.GeometricObject<const VSpline *>(id);
|
|
|
|
VSpline spl;
|
2014-06-12 09:22:29 +02:00
|
|
|
if (position == SplinePointPosition::FirstPoint)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
spl = VSpline(spline->GetP1(), pos, spline->GetP3(), spline->GetP4(), spline->GetKcurve());
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
spl = VSpline(spline->GetP1(), spline->GetP2(), pos, spline->GetP4(), spline->GetKcurve());
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
2014-06-09 19:39:18 +02:00
|
|
|
|
|
|
|
MoveSpline *moveSpl = new MoveSpline(doc, spline, spl, id, this->scene());
|
|
|
|
connect(moveSpl, &MoveSpline::NeedLiteParsing, doc, &VPattern::LiteParseTree);
|
|
|
|
qApp->getUndoStack()->push(moveSpl);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSpline::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogSpline>(this, event);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSpline::AddToFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VSpline *spl = VAbstractTool::data.GeometricObject<const VSpline *>(id);
|
2013-10-29 14:45:07 +01:00
|
|
|
QDomElement domElement = doc->createElement(TagName);
|
|
|
|
|
2014-03-21 11:08:29 +01:00
|
|
|
doc->SetAttribute(domElement, VDomDocument::AttrId, id);
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrType, ToolType);
|
|
|
|
doc->SetAttribute(domElement, AttrPoint1, spl->GetP1().id());
|
|
|
|
doc->SetAttribute(domElement, AttrPoint4, spl->GetP4().id());
|
|
|
|
doc->SetAttribute(domElement, AttrAngle1, spl->GetAngle1());
|
|
|
|
doc->SetAttribute(domElement, AttrAngle2, spl->GetAngle2());
|
|
|
|
doc->SetAttribute(domElement, AttrKAsm1, spl->GetKasm1());
|
|
|
|
doc->SetAttribute(domElement, AttrKAsm2, spl->GetKasm2());
|
|
|
|
doc->SetAttribute(domElement, AttrKCurve, spl->GetKcurve());
|
2013-08-05 10:37:56 +02:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
AddToCalculation(domElement);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-12-24 12:24:29 +01:00
|
|
|
void VToolSpline::RefreshDataInFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VSpline *spl = VAbstractTool::data.GeometricObject<const VSpline *>(id);
|
2013-12-24 12:24:29 +01:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrPoint1, spl->GetP1().id());
|
|
|
|
doc->SetAttribute(domElement, AttrPoint4, spl->GetP4().id());
|
|
|
|
doc->SetAttribute(domElement, AttrAngle1, spl->GetAngle1());
|
|
|
|
doc->SetAttribute(domElement, AttrAngle2, spl->GetAngle2());
|
|
|
|
doc->SetAttribute(domElement, AttrKAsm1, spl->GetKasm1());
|
|
|
|
doc->SetAttribute(domElement, AttrKAsm2, spl->GetKasm2());
|
|
|
|
doc->SetAttribute(domElement, AttrKCurve, spl->GetKcurve());
|
2013-12-24 12:24:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSpline::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->button() == Qt::LeftButton)
|
|
|
|
{
|
2014-06-12 09:22:29 +02:00
|
|
|
emit ChoosedTool(id, SceneObject::Spline);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
QGraphicsItem::mouseReleaseEvent(event);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSpline::RemoveReferens()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VSpline *spl = VAbstractTool::data.GeometricObject<const VSpline *>(id);
|
|
|
|
doc->DecrementReferens(spl->GetP1().id());
|
|
|
|
doc->DecrementReferens(spl->GetP4().id());
|
2013-09-30 18:29:03 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-02-06 14:57:23 +01:00
|
|
|
void VToolSpline::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogSpline *dialogTool = qobject_cast<DialogSpline*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
|
|
|
|
VPointF point1 = *VAbstractTool::data.GeometricObject<const VPointF *>(dialogTool->getP1());
|
|
|
|
VPointF point4 = *VAbstractTool::data.GeometricObject<const VPointF *>(dialogTool->getP4());
|
|
|
|
VSpline spl = VSpline (point1, point4, dialogTool->getAngle1(), dialogTool->getAngle2(),
|
|
|
|
dialogTool->getKAsm1(), dialogTool->getKAsm2(), dialogTool->getKCurve());
|
|
|
|
|
|
|
|
disconnect(controlPoints[0], &VControlPointSpline::ControlPointChangePosition, this,
|
|
|
|
&VToolSpline::ControlPointChangePosition);
|
|
|
|
disconnect(controlPoints[1], &VControlPointSpline::ControlPointChangePosition, this,
|
|
|
|
&VToolSpline::ControlPointChangePosition);
|
|
|
|
controlPoints[0]->setPos(spl.GetP2());
|
|
|
|
controlPoints[1]->setPos(spl.GetP3());
|
|
|
|
connect(controlPoints[0], &VControlPointSpline::ControlPointChangePosition, this,
|
|
|
|
&VToolSpline::ControlPointChangePosition);
|
|
|
|
connect(controlPoints[1], &VControlPointSpline::ControlPointChangePosition, this,
|
|
|
|
&VToolSpline::ControlPointChangePosition);
|
|
|
|
|
|
|
|
spl = VSpline (point1, controlPoints[0]->pos(), controlPoints[1]->pos(), point4, dialogTool->getKCurve());
|
|
|
|
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrPoint1, spl.GetP1().id());
|
|
|
|
doc->SetAttribute(domElement, AttrPoint4, spl.GetP4().id());
|
|
|
|
doc->SetAttribute(domElement, AttrAngle1, spl.GetAngle1());
|
|
|
|
doc->SetAttribute(domElement, AttrAngle2, spl.GetAngle2());
|
|
|
|
doc->SetAttribute(domElement, AttrKAsm1, spl.GetKasm1());
|
|
|
|
doc->SetAttribute(domElement, AttrKAsm2, spl.GetKasm2());
|
|
|
|
doc->SetAttribute(domElement, AttrKCurve, spl.GetKcurve());
|
2014-02-06 14:57:23 +01:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSpline::RefreshGeometry()
|
|
|
|
{
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(currentColor, qApp->toPixel(qApp->widthHairLine())/factor));
|
2013-12-29 17:48:57 +01:00
|
|
|
const VSpline *spl = VAbstractTool::data.GeometricObject<const VSpline *>(id);
|
2013-08-05 10:37:56 +02:00
|
|
|
QPainterPath path;
|
2013-12-29 17:48:57 +01:00
|
|
|
path.addPath(spl->GetPath());
|
2013-08-05 10:37:56 +02:00
|
|
|
path.setFillRule( Qt::WindingFill );
|
|
|
|
this->setPath(path);
|
2013-12-29 17:48:57 +01:00
|
|
|
QPointF splinePoint = VAbstractTool::data.GeometricObject<const VPointF *>(spl->GetP1().id())->toQPointF();
|
|
|
|
QPointF controlPoint = spl->GetP2();
|
2014-06-12 09:22:29 +02:00
|
|
|
emit RefreshLine(1, SplinePointPosition::FirstPoint, controlPoint, splinePoint);
|
2013-12-29 17:48:57 +01:00
|
|
|
splinePoint = VAbstractTool::data.GeometricObject<const VPointF *>(spl->GetP4().id())->toQPointF();
|
|
|
|
controlPoint = spl->GetP3();
|
2014-06-12 09:22:29 +02:00
|
|
|
emit RefreshLine(1, SplinePointPosition::LastPoint, controlPoint, splinePoint);
|
2013-08-13 18:48:36 +02:00
|
|
|
|
|
|
|
disconnect(controlPoints[0], &VControlPointSpline::ControlPointChangePosition, this,
|
|
|
|
&VToolSpline::ControlPointChangePosition);
|
|
|
|
disconnect(controlPoints[1], &VControlPointSpline::ControlPointChangePosition, this,
|
|
|
|
&VToolSpline::ControlPointChangePosition);
|
2013-12-29 17:48:57 +01:00
|
|
|
controlPoints[0]->setPos(spl->GetP2());
|
|
|
|
controlPoints[1]->setPos(spl->GetP3());
|
2013-08-13 18:48:36 +02:00
|
|
|
connect(controlPoints[0], &VControlPointSpline::ControlPointChangePosition, this,
|
|
|
|
&VToolSpline::ControlPointChangePosition);
|
|
|
|
connect(controlPoints[1], &VControlPointSpline::ControlPointChangePosition, this,
|
|
|
|
&VToolSpline::ControlPointChangePosition);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|