/************************************************************************ ** ** @file vislineintersectaxis.cpp ** @author Roman Telezhynskyi ** @date 19 10, 2014 ** ** @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-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 "vistoollineintersectaxis.h" #include #include #include #include #include #include #include #include "../../tools/drawTools/toolpoint/toolsinglepoint/toollinepoint/vtoollineintersectaxis.h" #include "../ifc/ifcdef.h" #include "../vgeometry/vpointf.h" #include "../vpatterndb/vcontainer.h" #include "../visualization.h" #include "visline.h" //--------------------------------------------------------------------------------------------------------------------- VisToolLineIntersectAxis::VisToolLineIntersectAxis(const VContainer *data, QGraphicsItem *parent) : VisLine(data, parent), point2Id(NULL_ID), axisPointId(NULL_ID), angle(-1), point(nullptr), lineP1(nullptr), lineP2(nullptr), basePoint(nullptr), baseLine(nullptr), axisLine(nullptr), line_intersection(nullptr) { this->mainColor = Qt::red; lineP1 = InitPoint(supportColor, this); lineP2 = InitPoint(supportColor, this); basePoint = InitPoint(supportColor, this); baseLine = InitItem(supportColor, this); axisLine = InitItem(supportColor, this); line_intersection = InitItem(supportColor, this); point = InitPoint(mainColor, this); } //--------------------------------------------------------------------------------------------------------------------- void VisToolLineIntersectAxis::RefreshGeometry() { if (object1Id > NULL_ID) { const QSharedPointer first = Visualization::data->GeometricObject(object1Id); DrawPoint(lineP1, static_cast(*first), supportColor); if (point2Id <= NULL_ID) { DrawLine(baseLine, QLineF(static_cast(*first), Visualization::scenePos), supportColor); } else { const QSharedPointer second = Visualization::data->GeometricObject(point2Id); DrawPoint(lineP2, static_cast(*second), supportColor); const QLineF base_line(static_cast(*first), static_cast(*second)); DrawLine(baseLine, base_line, supportColor); if (axisPointId > NULL_ID) { QLineF axis; const QSharedPointer third = Visualization::data->GeometricObject(axisPointId); if (VFuzzyComparePossibleNulls(angle, -1)) { axis = Axis(static_cast(*third), Visualization::scenePos); } else { axis = Axis(static_cast(*third), angle); } DrawPoint(basePoint, static_cast(*third), mainColor); DrawLine(axisLine, axis, supportColor, Qt::DashLine); QPointF p = VToolLineIntersectAxis::FindPoint(axis, base_line); QLineF axis_line(static_cast(*third), p); DrawLine(this, axis_line, mainColor, lineStyle); DrawPoint(point, p, mainColor); ShowIntersection(axis_line, base_line); Visualization::toolTip = tr("Intersection line and axis: angle = %1°; Shift - " "sticking angle, Enter - finish creation") .arg(this->line().angle()); } } } } //--------------------------------------------------------------------------------------------------------------------- QString VisToolLineIntersectAxis::Angle() const { return QString("%1").arg(this->line().angle()); } //--------------------------------------------------------------------------------------------------------------------- void VisToolLineIntersectAxis::SetAngle(const QString &expression) { angle = FindVal(expression, Visualization::data->DataVariables()); } //--------------------------------------------------------------------------------------------------------------------- void VisToolLineIntersectAxis::setPoint2Id(const quint32 &value) { point2Id = value; } //--------------------------------------------------------------------------------------------------------------------- void VisToolLineIntersectAxis::setAxisPointId(const quint32 &value) { axisPointId = value; } //--------------------------------------------------------------------------------------------------------------------- void VisToolLineIntersectAxis::ShowIntersection(const QLineF &axis_line, const QLineF &base_line) { QPointF p; QLineF::IntersectType intersect = axis_line.intersect(base_line, &p); if (intersect == QLineF::UnboundedIntersection) { line_intersection->setVisible(true); DrawLine(line_intersection, QLineF(base_line.p1(), axis_line.p2()), supportColor, Qt::DashLine); } else if (intersect == QLineF::BoundedIntersection || intersect == QLineF::NoIntersection) { line_intersection->setVisible(false); } }