X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesAPI%2FFeaturesAPI_Placement.cpp;h=b73a18227745a6f7f4cd519d96a71bd81abf9ef3;hb=50a8df0c6a66da8067b16155e5ae39f8f26a7ebc;hp=988536e6a19855458ae7ac62a5a177e46519e5f3;hpb=a94fc319f2aa64b43c9a73b5ff7063923648faec;p=modules%2Fshaper.git diff --git a/src/FeaturesAPI/FeaturesAPI_Placement.cpp b/src/FeaturesAPI/FeaturesAPI_Placement.cpp index 988536e6a..b73a18227 100644 --- a/src/FeaturesAPI/FeaturesAPI_Placement.cpp +++ b/src/FeaturesAPI/FeaturesAPI_Placement.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-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 "FeaturesAPI_Placement.h" @@ -109,8 +108,16 @@ void FeaturesAPI_Placement::dump(ModelHighAPI_Dumper& theDumper) const AttributeBooleanPtr anAttrCentering = aBase->boolean(FeaturesPlugin_Placement::CENTERING_ID()); theDumper << aBase << " = model.addPlacement(" << aDocName << ", " - << anAttrObjects << ", " << anAttrStartShape << ", " << anAttrEndShape << ", " - << anAttrReverse << ", " << anAttrCentering << ")" << std::endl; + << anAttrObjects << ", " << anAttrStartShape << ", " << anAttrEndShape; + + if (anAttrReverse->value()) + theDumper << ", reverse = " << anAttrReverse; + if (anAttrCentering->value()) + theDumper << ", centering = " << anAttrCentering; + if (!aBase->data()->version().empty()) + theDumper << ", keepSubResults = True"; + + theDumper << ")" << std::endl; } //================================================================================================== @@ -119,9 +126,12 @@ PlacementPtr addPlacement(const std::shared_ptr& thePart, const ModelHighAPI_Selection& theStartShape, const ModelHighAPI_Selection& theEndShape, const bool theReverseDirection, - const bool theCentering) + const bool theCentering, + const bool keepSubResults) { std::shared_ptr aFeature = thePart->addFeature(FeaturesAPI_Placement::ID()); + if (!keepSubResults) + aFeature->data()->setVersion(""); return PlacementPtr(new FeaturesAPI_Placement(aFeature, theObjects, theStartShape,