X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchSolver%2FSketchSolver_ConstraintEqual.cpp;h=9a110c79e1417917d52323acae9c45b6f2d754a3;hb=745c72679f6346375d5e886b25cc3865f3c4daae;hp=d611b6f4faead9a23770c844015b3bb6bd099fa4;hpb=a94fc319f2aa64b43c9a73b5ff7063923648faec;p=modules%2Fshaper.git diff --git a/src/SketchSolver/SketchSolver_ConstraintEqual.cpp b/src/SketchSolver/SketchSolver_ConstraintEqual.cpp index d611b6f4f..9a110c79e 100644 --- a/src/SketchSolver/SketchSolver_ConstraintEqual.cpp +++ b/src/SketchSolver/SketchSolver_ConstraintEqual.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2021 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 @@ -12,10 +12,9 @@ // // 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 +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or -// email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #include @@ -39,6 +38,7 @@ void SketchSolver_ConstraintEqual::getAttributes( int aNbLines = 0; int aNbArcs = 0; int aNbCircs = 0; + int aNbEllipses = 0; bool isArcFirst = false; // in line-arc equivalence, the line should be first std::vector::iterator anAttrIt = theAttributes.begin() + 2; for (; anAttrIt != theAttributes.end(); ++anAttrIt) { @@ -51,17 +51,27 @@ void SketchSolver_ConstraintEqual::getAttributes( ++aNbArcs; isArcFirst = (aNbLines == 0); } + else if (aType == ENTITY_ELLIPSE || aType == ENTITY_ELLIPTIC_ARC) + ++aNbEllipses; } - if (aNbLines + aNbArcs + aNbCircs != 2 || - (aNbLines == aNbCircs && aNbArcs == 0)) { + if (aNbLines + aNbArcs + aNbCircs + aNbEllipses != 2 || + (aNbArcs == 1 && aNbEllipses != 0) || aNbEllipses == 1) { myErrorMsg = SketchSolver_Error::INCORRECT_ATTRIBUTE(); return; } switch (aNbLines) { case 0: - myType = CONSTRAINT_EQUAL_RADIUS; + if (aNbEllipses == 2) { + myType = CONSTRAINT_EQUAL_ELLIPSES; + std::shared_ptr aStorage = + std::dynamic_pointer_cast(myStorage); + myAuxValue = ScalarWrapperPtr(new PlaneGCSSolver_ScalarWrapper(aStorage->createParameter())); + theValue = myAuxValue; + } + else + myType = CONSTRAINT_EQUAL_RADIUS; break; case 1: myType = CONSTRAINT_EQUAL_LINE_ARC; @@ -86,3 +96,15 @@ void SketchSolver_ConstraintEqual::getAttributes( break; } } + +bool SketchSolver_ConstraintEqual::remove() +{ + if (myAuxValue) { + std::shared_ptr aStorage = + std::dynamic_pointer_cast(myStorage); + GCS::SET_pD aParams; + aParams.insert(myAuxValue->scalar()); + aStorage->removeParameters(aParams); + } + return SketchSolver_Constraint::remove(); +}