X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Line.cpp;h=6f8b21c2577d80ebce0ccf6f058c015d87bd2855;hb=77ce6d35ac8d2f0fdaecb4f23e0870bf74e36103;hp=7c3f528d50330ded1ed7bf8ad97efefb0100e1a7;hpb=2ec923d13396d1aad7994d719fa1b03f9cbbc97d;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Line.cpp b/src/SketchPlugin/SketchPlugin_Line.cpp index 7c3f528d5..6f8b21c25 100644 --- a/src/SketchPlugin/SketchPlugin_Line.cpp +++ b/src/SketchPlugin/SketchPlugin_Line.cpp @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> - -// File: SketchPlugin_Line.cxx -// Created: 27 Mar 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2024 CEA, EDF +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library 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 +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include "SketchPlugin_Line.h" #include "SketchPlugin_Sketch.h" @@ -17,11 +30,11 @@ #include #include -#include +#include #include +#include #include -#include #include SketchPlugin_Line::SketchPlugin_Line() @@ -55,18 +68,7 @@ void SketchPlugin_Line::execute() std::shared_ptr anEndAttr = std::dynamic_pointer_cast< GeomDataAPI_Point2D>(data()->attribute(END_ID())); if (aStartAttr->isInitialized() && anEndAttr->isInitialized()) { - std::shared_ptr aStart(aSketch->to3D(aStartAttr->x(), aStartAttr->y())); - std::shared_ptr anEnd(aSketch->to3D(anEndAttr->x(), anEndAttr->y())); - //std::cout<<"Execute line "<x()<<" "<y()<<" "<z()<<" - " - // <x()<<" "<y()<<" "<z()< anEdge = GeomAlgoAPI_EdgeBuilder::line(aStart, anEnd); - // store the result - std::shared_ptr aConstr = document()->createConstruction( - data()); - aConstr->setShape(anEdge); - aConstr->setIsInHistory(false); - setResult(aConstr); + SketchPlugin_Sketch::createLine2DResult(this, aSketch, START_ID(), END_ID()); static Events_ID anId = ModelAPI_EventReentrantMessage::eventId(); std::shared_ptr aMessage = std::shared_ptr @@ -78,21 +80,7 @@ void SketchPlugin_Line::execute() } } -void SketchPlugin_Line::move(double theDeltaX, double theDeltaY) -{ - std::shared_ptr aData = data(); - if (!aData->isValid()) - return; - - std::shared_ptr aPoint1 = std::dynamic_pointer_cast - (aData->attribute(START_ID())); - aPoint1->move(theDeltaX, theDeltaY); - - std::shared_ptr aPoint2 = std::dynamic_pointer_cast - (aData->attribute(END_ID())); - aPoint2->move(theDeltaX, theDeltaY); -} - +// LCOV_EXCL_START std::string SketchPlugin_Line::processEvent(const std::shared_ptr& theMessage) { std::string aFilledAttributeName; @@ -114,28 +102,7 @@ std::string SketchPlugin_Line::processEvent(const std::shared_ptr& thePoint) -{ - double aDelta = 0; - - std::shared_ptr aData = data(); - std::shared_ptr aPoint1 = - std::dynamic_pointer_cast(aData->attribute(START_ID())); - std::shared_ptr aPoint2 = - std::dynamic_pointer_cast(aData->attribute(END_ID())); - - GeomAPI_Lin2d aLin2d(aPoint1->x(), aPoint1->y(), aPoint2->x(), aPoint2->y()); - - if (false/*projection*/) { // TODO: if it has not been necessary, remove this block - std::shared_ptr aResult = aLin2d.project(thePoint); - aDelta = aResult->distance(thePoint); - } else { // distance - aDelta = aLin2d.distance(thePoint); - } - - return aDelta; -} +// LCOV_EXCL_STOP const std::string& SketchPlugin_Line::getKind() {