/************************************************************************ ** ** @file vistoolpointofcontact.cpp ** @author Roman Telezhynskyi ** @date 14 8, 2014 ** ** @brief ** @copyright ** This source code is part of the Valentina project, a pattern making ** program, whose allow create and modeling patterns of clothing. ** Copyright (C) 2013-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 "vistoolpointofcontact.h" #include #include #include #include #include #include #include "../../tools/drawTools/toolpoint/toolsinglepoint/vtoolpointofcontact.h" #include "../ifc/ifcdef.h" #include "../vgeometry/vpointf.h" #include "../vpatterndb/vcontainer.h" #include "../visualization.h" #include "visline.h" //--------------------------------------------------------------------------------------------------------------------- VisToolPointOfContact::VisToolPointOfContact(const VContainer *data, QGraphicsItem *parent) :VisLine(data, parent), lineP2Id(NULL_ID), radiusId(NULL_ID), point(nullptr), lineP1(nullptr), lineP2(nullptr), arc_point(nullptr), circle(nullptr), radius(0) { arc_point = InitPoint(supportColor, this); lineP1 = InitPoint(supportColor, this); lineP2 = InitPoint(supportColor, this); circle = InitItem(supportColor, this); point = InitPoint(mainColor, this); } //--------------------------------------------------------------------------------------------------------------------- void VisToolPointOfContact::RefreshGeometry() { if (object1Id > NULL_ID) { const QSharedPointer first = Visualization::data->GeometricObject(object1Id); DrawPoint(lineP1, static_cast(*first), supportColor); if (lineP2Id <= NULL_ID) { DrawLine(this, QLineF(static_cast(*first), Visualization::scenePos), supportColor); } else { const QSharedPointer second = Visualization::data->GeometricObject(lineP2Id); DrawPoint(lineP2, static_cast(*second), supportColor); DrawLine(this, QLineF(static_cast(*first), static_cast(*second)), supportColor); if (radiusId > NULL_ID) { const QSharedPointer third = Visualization::data->GeometricObject(radiusId); DrawPoint(arc_point, static_cast(*third), supportColor); if (not qFuzzyIsNull(radius)) { QPointF fPoint = VToolPointOfContact::FindPoint(radius, static_cast(*third), static_cast(*first), static_cast(*second)); DrawPoint(point, fPoint, mainColor); circle->setRect(PointRect(radius)); DrawPoint(circle, static_cast(*third), supportColor, Qt::DashLine); } } } } } //--------------------------------------------------------------------------------------------------------------------- void VisToolPointOfContact::setLineP2Id(const quint32 &value) { lineP2Id = value; } //--------------------------------------------------------------------------------------------------------------------- void VisToolPointOfContact::setRadiusId(const quint32 &value) { radiusId = value; } //--------------------------------------------------------------------------------------------------------------------- void VisToolPointOfContact::setRadius(const QString &expression) { radius = FindLengthFromUser(expression, Visualization::data->DataVariables()); }