X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FBuildPlugin%2FBuildPlugin_Solid.cpp;h=cd1cb0c863be282f3017761c48f8de3f1f5ae4c5;hb=f51f8ab55887ac6eff49fb9937a460abe1956517;hp=dc0c57ed54d37afb59bca4fb74b1f75aadaa2f36;hpb=9b61e5ee5eafe9d6948d9a78667efa2abec132c3;p=modules%2Fshaper.git diff --git a/src/BuildPlugin/BuildPlugin_Solid.cpp b/src/BuildPlugin/BuildPlugin_Solid.cpp index dc0c57ed5..cd1cb0c86 100644 --- a/src/BuildPlugin/BuildPlugin_Solid.cpp +++ b/src/BuildPlugin/BuildPlugin_Solid.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2017-20xx 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 @@ -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 "BuildPlugin_Solid.h" @@ -23,6 +22,7 @@ #include #include +#include #include #include @@ -42,48 +42,22 @@ void BuildPlugin_Solid::initAttributes() void BuildPlugin_Solid::execute() { // all the needed checkings are in validator, so, here just make and store result - ListOfShape anOriginalShapes; - AttributeSelectionListPtr aSelectionList = selectionList(BASE_OBJECTS_ID()); - for (int anIndex = 0; anIndex < aSelectionList->size(); ++anIndex) { - AttributeSelectionPtr aSelection = aSelectionList->value(anIndex); - GeomShapePtr aShape = aSelection->value(); - if (!aShape.get()) - aShape = aSelection->context()->shape(); - anOriginalShapes.push_back(aShape); - } + ListOfShape anOriginalFaces; + ListOfShape anOriginalSolids; + getOriginalShapesAndContexts(BASE_OBJECTS_ID(), anOriginalFaces, anOriginalSolids); + std::shared_ptr anAlgo( - new GeomAlgoAPI_MakeVolume(anOriginalShapes, false)); + new GeomAlgoAPI_MakeVolume(anOriginalFaces, false)); // check and process result of volume maker GeomShapePtr aResShape = getSingleSubshape(anAlgo->shape()); - storeResult(anOriginalShapes, aResShape, anAlgo); -} - -void BuildPlugin_Solid::storeResult(const ListOfShape& theOriginalShapes, - const GeomShapePtr& theResultShape, - const GeomMakeShapePtr& theAlgorithm) -{ - ResultBodyPtr aResultBody = document()->createBody(data()); - aResultBody->store(theResultShape); - - // Store faces - for (ListOfShape::const_iterator anIt = theOriginalShapes.cbegin(); - anIt != theOriginalShapes.cend(); - ++anIt) - { - GeomShapePtr aShape = *anIt; - aResultBody->loadModifiedShapes(theAlgorithm, aShape, GeomAPI_Shape::FACE); - } - setResult(aResultBody); + storeResult(anAlgo, anOriginalFaces, anOriginalSolids, aResShape); } GeomShapePtr BuildPlugin_Solid::getSingleSubshape(const GeomShapePtr& theCompound) { if (theCompound->shapeType() == GeomAPI_Shape::COMPOUND) { GeomAPI_ShapeIterator anIt(theCompound); - GeomShapePtr aFoundSub; - for (; anIt.more() && !aFoundSub; anIt.next()) { - return anIt.current(); - } + return anIt.current(); } return theCompound; }