Salome HOME
Copyright update 2022
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_Placement.cpp
index 988536e6a19855458ae7ac62a5a177e46519e5f3..cf446bc0b141add7ec368114362dc3bc788670e2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2022  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
 //
 // 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<mailto: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<ModelAPI_Document>& thePart,
                           const ModelHighAPI_Selection& theStartShape,
                           const ModelHighAPI_Selection& theEndShape,
                           const bool theReverseDirection,
-                          const bool theCentering)
+                          const bool theCentering,
+                          const bool keepSubResults)
 {
   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(FeaturesAPI_Placement::ID());
+  if (!keepSubResults)
+    aFeature->data()->setVersion("");
   return PlacementPtr(new FeaturesAPI_Placement(aFeature,
                                                 theObjects,
                                                 theStartShape,