X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGDMLPlugin%2FGDMLPlugin_Ellipsoid.cpp;h=4f92544391afae0d83f07ccbae8c70c6f8f0a3c3;hb=8d04b5f4360b23cf376beff9c5e7c12d0e6a5f1e;hp=db962dcfefec093245830186f0bb82c44936df49;hpb=57199135053dfe0636ff8ff29eb6c75a6df6f08d;p=modules%2Fshaper.git diff --git a/src/GDMLPlugin/GDMLPlugin_Ellipsoid.cpp b/src/GDMLPlugin/GDMLPlugin_Ellipsoid.cpp index db962dcfe..4f9254439 100644 --- a/src/GDMLPlugin/GDMLPlugin_Ellipsoid.cpp +++ b/src/GDMLPlugin/GDMLPlugin_Ellipsoid.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 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 @@ -12,19 +12,22 @@ // // 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 +#include + #include #include #include #include +#include + //================================================================================================= GDMLPlugin_Ellipsoid::GDMLPlugin_Ellipsoid() // Nothing to do during instantiation { @@ -46,14 +49,14 @@ void GDMLPlugin_Ellipsoid::initAttributes() void GDMLPlugin_Ellipsoid::execute() { std::shared_ptr anEllipsoidAlgo; - + double aAx = real(AX_ID())->value(); double aBy = real(BY_ID())->value(); double aCz = real(CZ_ID())->value(); - + std::string useZCut1 = string(USE_ZCUT1_ID())->value(); std::string useZCut2 = string(USE_ZCUT2_ID())->value(); - + double aZCut1 = 0.; if (useZCut1.empty()) { aZCut1 = aCz /2.; @@ -66,13 +69,13 @@ void GDMLPlugin_Ellipsoid::execute() } else { aZCut2 = real(ZCUT2_ID())->value(); } - + anEllipsoidAlgo = std::shared_ptr( new GeomAlgoAPI_Ellipsoid(aAx, aBy, aCz, aZCut1, aZCut2)); - + // Check with that the arguments for anEllipsoidAlgo are correct - if (!anEllipsoidAlgo->check()){ - setError(anEllipsoidAlgo->getError(), false); + if (!anEllipsoidAlgo->check()) { + setError(anEllipsoidAlgo->getError(), false); return; } @@ -83,15 +86,15 @@ void GDMLPlugin_Ellipsoid::execute() setError(anEllipsoidAlgo->getError(), false); return; } - + // Check if the created ellipsoid is valid if (!anEllipsoidAlgo->checkValid("Ellipsoid builder")) { setError(anEllipsoidAlgo->getError(), false); return; } - int aResultIndex = 0; - ResultBodyPtr aResultEllipsoid = document()->createBody(data(), aResultIndex); + int aResultIndex = 0; + ResultBodyPtr aResultEllipsoid = document()->createBody(data(), aResultIndex); loadNamingDS(anEllipsoidAlgo, aResultEllipsoid); setResult(aResultEllipsoid, aResultIndex); @@ -103,18 +106,34 @@ void GDMLPlugin_Ellipsoid::loadNamingDS(std::shared_ptr t { // Load the result theResultEllipsoid->store(theEllipsoidAlgo->shape()); - + // Prepare the naming theEllipsoidAlgo->prepareNamingFaces(); - + // Insert to faces - int num = 1; + // Naming for faces and edges std::map< std::string, std::shared_ptr > listOfFaces = - theEllipsoidAlgo->getCreatedFaces(); - for (std::map< std::string, std::shared_ptr >::iterator - it=listOfFaces.begin(); it!=listOfFaces.end(); ++it) { - std::shared_ptr aFace = (*it).second; - theResultEllipsoid->generated(aFace, (*it).first, num++); + theEllipsoidAlgo->getCreatedFaces(); + for (std::map< std::string, std::shared_ptr >::iterator it = listOfFaces.begin(); + it!=listOfFaces.end(); + ++it) + { + theResultEllipsoid->generated((*it).second, (*it).first); + } + + // Naming vertices + GeomAPI_DataMapOfShapeShape aVertices; + int anIndex = 1; + for (GeomAPI_ShapeExplorer aVertExp(theEllipsoidAlgo->shape(), GeomAPI_Shape::VERTEX); + aVertExp.more(); + aVertExp.next()) + { + if (!aVertices.isBound(aVertExp.current())) { + std::ostringstream aStream; + aStream<<"Vertex_"<generated(aVertExp.current(), aStream.str()); + aVertices.bind(aVertExp.current(), aVertExp.current()); + } } }