X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchSolver%2FSketchSolver_ConstraintFixed.cpp;h=a32e1966f49a200ca6016081b1c8e071062ab166;hb=c02fae5493cc6d56c9a1db3bdcf6d872f88fea07;hp=3d316d0ff53c34f7250990197c24c04e17acff05;hpb=884210338f7a0d6ea5442328609c841028503334;p=modules%2Fshaper.git diff --git a/src/SketchSolver/SketchSolver_ConstraintFixed.cpp b/src/SketchSolver/SketchSolver_ConstraintFixed.cpp index 3d316d0ff..a32e1966f 100644 --- a/src/SketchSolver/SketchSolver_ConstraintFixed.cpp +++ b/src/SketchSolver/SketchSolver_ConstraintFixed.cpp @@ -1,4 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D +// Copyright (C) 2014-2019 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 @@ -124,6 +141,28 @@ GCS::VEC_pD toParameters(const EntityWrapperPtr& theEntity) aParameters.push_back(anArc->endAngle); break; } + case ENTITY_ELLIPSE: { + std::shared_ptr anEllipse = + std::dynamic_pointer_cast(anEntity->entity()); + aParameters.push_back(anEllipse->center.x); + aParameters.push_back(anEllipse->center.y); + aParameters.push_back(anEllipse->focus1.x); + aParameters.push_back(anEllipse->focus1.y); + aParameters.push_back(anEllipse->radmin); + break; + } + case ENTITY_ELLIPTIC_ARC: { + std::shared_ptr anEllArc = + std::dynamic_pointer_cast(anEntity->entity()); + aParameters.push_back(anEllArc->center.x); + aParameters.push_back(anEllArc->center.y); + aParameters.push_back(anEllArc->focus1.x); + aParameters.push_back(anEllArc->focus1.y); + aParameters.push_back(anEllArc->radmin); + aParameters.push_back(anEllArc->startAngle); + aParameters.push_back(anEllArc->endAngle); + break; + } default: break; }