X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchSolver%2FSketchSolver_ConstraintMovement.cpp;h=bbaf6ac24a33074bf48e4a4917683609b8b2761e;hb=d5b5ce2284869d8b97ce638502c58c810bbeb0c7;hp=bec111b871975cab56dc2e8f0aac9890400d1117;hpb=884210338f7a0d6ea5442328609c841028503334;p=modules%2Fshaper.git diff --git a/src/SketchSolver/SketchSolver_ConstraintMovement.cpp b/src/SketchSolver/SketchSolver_ConstraintMovement.cpp index bec111b87..bbaf6ac24 100644 --- a/src/SketchSolver/SketchSolver_ConstraintMovement.cpp +++ b/src/SketchSolver/SketchSolver_ConstraintMovement.cpp @@ -1,4 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D +// Copyright (C) 2017 CEA/DEN, EDF R&D +// +// 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 #include @@ -60,12 +78,14 @@ void SketchSolver_ConstraintMovement::process() static bool isSimpleMove(FeaturePtr theMovedFeature, AttributePtr theDraggedPoint) { bool isSimple = true; +#ifdef CHANGE_RADIUS_WHILE_MOVE if (theMovedFeature->getKind() == SketchPlugin_Circle::ID()) isSimple = (theDraggedPoint.get() != 0); else if (theMovedFeature->getKind() == SketchPlugin_Arc::ID()) { isSimple = (theDraggedPoint.get() != 0 && theDraggedPoint->id() == SketchPlugin_Arc::CENTER_ID()); } +#endif return isSimple; } @@ -192,10 +212,17 @@ void SketchSolver_ConstraintMovement::startPoint( void SketchSolver_ConstraintMovement::moveTo( const std::shared_ptr& theDestinationPoint) { + if (!myMovedFeature) + return; // nothing to move + double aDelta[2] = { theDestinationPoint->x() - myStartPoint->x(), theDestinationPoint->y() - myStartPoint->y() }; +#ifdef CHANGE_RADIUS_WHILE_MOVE int aMaxSize = mySimpleMove ? (int)myFixedValues.size() : 2; +#else + int aMaxSize = myMovedFeature->getKind() == SketchPlugin_Line::ID() && !myDraggedPoint ? 4 : 2; +#endif for (int i = 0; i < aMaxSize; ++i) myFixedValues[i] += aDelta[i % 2]; }