/************************************************************************ ** ** @file vistoolpointofintersectioncircles.cpp ** @author Roman Telezhynskyi ** @date 29 5, 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) 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 . ** *************************************************************************/ #include "vistoolpointofintersectioncircles.h" #include "../vpatterndb/vcontainer.h" #include "../tools/drawTools/toolpoint/toolsinglepoint/vtoolpointofintersectioncircles.h" #include "../vgeometry/vpointf.h" //--------------------------------------------------------------------------------------------------------------------- VisToolPointOfIntersectionCircles::VisToolPointOfIntersectionCircles(const VContainer *data, QGraphicsItem *parent) : VisLine(data, parent), point2Id(NULL_ID), c1Radius(0), c2Radius(0), crossPoint(CrossCirclesPoint::FirstPoint), point(nullptr), c1Center(nullptr), c2Center(nullptr), c1Path(nullptr), c2Path(nullptr) { c1Path = InitItem(Qt::darkGreen, this); c2Path = InitItem(Qt::darkRed, this); point = InitPoint(mainColor, this); c1Center = InitPoint(supportColor, this); c2Center = InitPoint(supportColor, this); } //--------------------------------------------------------------------------------------------------------------------- VisToolPointOfIntersectionCircles::~VisToolPointOfIntersectionCircles() {} //--------------------------------------------------------------------------------------------------------------------- void VisToolPointOfIntersectionCircles::RefreshGeometry() { if (point1Id > NULL_ID) { const QSharedPointer first = Visualization::data->GeometricObject(point1Id); DrawPoint(c1Center, first->toQPointF(), supportColor); if (point2Id > NULL_ID) { const QSharedPointer second = Visualization::data->GeometricObject(point2Id); DrawPoint(c2Center, second->toQPointF(), supportColor); if (c1Radius > 0 && c2Radius > 0) { c1Path->setRect(PointRect(c1Radius)); DrawPoint(c1Path, first->toQPointF(), Qt::darkGreen, Qt::DashLine); c2Path->setRect(PointRect(c2Radius)); DrawPoint(c2Path, second->toQPointF(), Qt::darkRed, Qt::DashLine); const QPointF fPoint = VToolPointOfIntersectionCircles::FindPoint(first->toQPointF(), second->toQPointF(), c1Radius, c2Radius, crossPoint); DrawPoint(point, fPoint, mainColor); } } } } //--------------------------------------------------------------------------------------------------------------------- void VisToolPointOfIntersectionCircles::VisualMode(const quint32 &id) { VMainGraphicsScene *scene = qobject_cast(qApp->getCurrentScene()); SCASSERT(scene != nullptr); this->point1Id = id; Visualization::scenePos = scene->getScenePos(); RefreshGeometry(); AddOnScene(); } //--------------------------------------------------------------------------------------------------------------------- void VisToolPointOfIntersectionCircles::setPoint2Id(const quint32 &value) { point2Id = value; } //--------------------------------------------------------------------------------------------------------------------- void VisToolPointOfIntersectionCircles::setC1Radius(const QString &value) { c1Radius = FindLength(value); } //--------------------------------------------------------------------------------------------------------------------- void VisToolPointOfIntersectionCircles::setC2Radius(const QString &value) { c2Radius = FindLength(value); } //--------------------------------------------------------------------------------------------------------------------- void VisToolPointOfIntersectionCircles::setCrossPoint(const CrossCirclesPoint &value) { crossPoint = value; }