/************************************************************************ ** ** @file vistoolcurveintersectaxis.cpp ** @author Roman Telezhynskyi ** @date 21 10, 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 "vistoolcurveintersectaxis.h" #include #include #include #include #include #include #include #include #include #include "../../tools/drawTools/toolpoint/toolsinglepoint/toollinepoint/vtoolcurveintersectaxis.h" #include "../vgeometry/vabstractcurve.h" #include "../vgeometry/vpointf.h" #include "../vpatterndb/vcontainer.h" #include "../visualization.h" #include "visline.h" #include "../vmisc/vmodifierkey.h" //--------------------------------------------------------------------------------------------------------------------- VisToolCurveIntersectAxis::VisToolCurveIntersectAxis(const VContainer *data, QGraphicsItem *parent) : VisLine(data, parent) { SetMainColor(Qt::red); m_visCurve = InitItem(Qt::darkGreen, this); m_basePoint = InitPoint(Color(VColor::SupportColor), this); m_baseLine = InitItem(Color(VColor::SupportColor), this); m_axisLine = InitItem(Color(VColor::SupportColor), this); //-V656 m_point = InitPoint(Color(VColor::MainColor), this); } //--------------------------------------------------------------------------------------------------------------------- void VisToolCurveIntersectAxis::RefreshGeometry() { if (m_curveId > NULL_ID) { const QSharedPointer curve = GetData()->GeometricObject(m_curveId); DrawPath(m_visCurve, curve->GetPath(), curve->DirectionArrows(), Color(VColor::SupportColor), Qt::SolidLine, Qt::RoundCap); if (m_axisPointId > NULL_ID) { QLineF axis; const QSharedPointer first = GetData()->GeometricObject(m_axisPointId); if (VFuzzyComparePossibleNulls(m_angle, -1)) { axis = Axis(static_cast(*first), ScenePos()); } else { axis = Axis(static_cast(*first), m_angle); } DrawPoint(m_basePoint, static_cast(*first), Color(VColor::MainColor)); DrawLine(m_axisLine, axis, Color(VColor::SupportColor), Qt::DashLine); QPointF p; VToolCurveIntersectAxis::FindPoint(static_cast(*first), axis.angle(), curve->GetPoints(), &p); QLineF axis_line(static_cast(*first), p); DrawLine(this, axis_line, Color(VColor::MainColor), LineStyle()); DrawPoint(m_point, p, Color(VColor::MainColor)); SetToolTip(tr("Intersection curve and axis: angle = %1°; %2 - " "sticking angle, %3 - finish creation") .arg(this->line().angle()) .arg(VModifierKey::Shift(), VModifierKey::EnterKey())); } } } //--------------------------------------------------------------------------------------------------------------------- void VisToolCurveIntersectAxis::VisualMode(quint32 id) { m_curveId = id; StartVisualMode(); } //--------------------------------------------------------------------------------------------------------------------- auto VisToolCurveIntersectAxis::Angle() const -> QString { return QString::number(this->line().angle()); } //--------------------------------------------------------------------------------------------------------------------- void VisToolCurveIntersectAxis::SetAngle(const QString &expression) { m_angle = FindValFromUser(expression, GetData()->DataVariables()); }