X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FPrimitivesPlugin%2FPrimitivesPlugin_Sphere.cpp;h=24344f5a03c1d439a5dac23124d384019e610d36;hb=63d86e00e1e6a482fcad527ae0b883deccceed11;hp=9e63047df90e31419cf531780fdb03c349950da2;hpb=8e97f0514a5e19febf05a98077f84f63756f169f;p=modules%2Fshaper.git diff --git a/src/PrimitivesPlugin/PrimitivesPlugin_Sphere.cpp b/src/PrimitivesPlugin/PrimitivesPlugin_Sphere.cpp index 9e63047df..24344f5a0 100644 --- a/src/PrimitivesPlugin/PrimitivesPlugin_Sphere.cpp +++ b/src/PrimitivesPlugin/PrimitivesPlugin_Sphere.cpp @@ -1,4 +1,21 @@ -// Copyright (C) 2014-201x CEA/DEN, EDF R&D +// Copyright (C) 2017-2020 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 +// // File: PrimitivesPlugin_Sphere.h // Created: 15 Mar 2017 @@ -6,6 +23,8 @@ #include +#include + #include #include @@ -14,6 +33,8 @@ #include #include +#include + //================================================================================================= PrimitivesPlugin_Sphere::PrimitivesPlugin_Sphere() { @@ -33,7 +54,7 @@ void PrimitivesPlugin_Sphere::initAttributes() data()->selection(PrimitivesPlugin_Sphere::CENTER_POINT_ID()); if (!aCenterPoint->isInitialized()) { ObjectPtr aPointObj = ModelAPI_Session::get()->moduleDocument() - ->objectByName(ModelAPI_ResultConstruction::group(), "Origin"); + ->objectByName(ModelAPI_ResultConstruction::group(), L"Origin"); if (aPointObj.get()) { ResultPtr aPointRes = std::dynamic_pointer_cast(aPointObj); aCenterPoint->setValue(aPointRes, std::shared_ptr()); @@ -101,12 +122,28 @@ void PrimitivesPlugin_Sphere::loadNamingDS(std::shared_ptr t theSphereAlgo->prepareNamingFaces(); // Insert to faces - int num = 1; + // Naming for faces and edges std::map< std::string, std::shared_ptr > listOfFaces = theSphereAlgo->getCreatedFaces(); - for (std::map< std::string, std::shared_ptr >::iterator - it=listOfFaces.begin(); it!=listOfFaces.end(); ++it) { - std::shared_ptr aFace = (*it).second; - theResultSphere->generated(aFace, (*it).first, num++); + for (std::map< std::string, std::shared_ptr >::iterator it = listOfFaces.begin(); + it != listOfFaces.end(); + ++it) + { + theResultSphere->generated((*it).second, (*it).first); + } + + // Naming vertices + GeomAPI_DataMapOfShapeShape aVertices; + int anIndex = 1; + for (GeomAPI_ShapeExplorer aVertExp(theSphereAlgo->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()); + } } }