]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/FeaturesPlugin/FeaturesPlugin_Placement.cpp
Salome HOME
Issue #1834: Fix length of lines
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_Placement.cpp
index 627d10666b9819996d38dd6a4479a6aad52e8be7..d3fc14903062a5d5a27ffaf3df4a934815716d62 100644 (file)
@@ -47,7 +47,8 @@ void FeaturesPlugin_Placement::execute()
     return;
   }
   for(int anObjectsIndex = 0; anObjectsIndex < anObjectsSelList->size(); anObjectsIndex++) {
-    std::shared_ptr<ModelAPI_AttributeSelection> anObjectAttr = anObjectsSelList->value(anObjectsIndex);
+    std::shared_ptr<ModelAPI_AttributeSelection> anObjectAttr = 
+      anObjectsSelList->value(anObjectsIndex);
     std::shared_ptr<GeomAPI_Shape> anObject = anObjectAttr->value();
     if(!anObject.get()) { // may be for not-activated parts
       eraseResults();
@@ -142,7 +143,8 @@ void FeaturesPlugin_Placement::execute()
   for(ListOfShape::iterator anObjectsIt = anObjects.begin(); anObjectsIt != anObjects.end();
       anObjectsIt++, aContext++) {
 
-    if ((*aContext)->groupName() == ModelAPI_ResultPart::group()) { // for part results just set transformation
+    // for part results just set transformation
+    if ((*aContext)->groupName() == ModelAPI_ResultPart::group()) { 
       ResultPartPtr anOrigin = std::dynamic_pointer_cast<ModelAPI_ResultPart>(*aContext);
       ResultPartPtr aResultPart = document()->copyPart(anOrigin, data(), aResultIndex);
       aResultPart->setTrsf(aContextRes, aTrsf);
@@ -169,7 +171,8 @@ void FeaturesPlugin_Placement::execute()
       }
 
       //LoadNamingDS
-      std::shared_ptr<ModelAPI_ResultBody> aResultBody = document()->createBody(data(), aResultIndex);
+      std::shared_ptr<ModelAPI_ResultBody> aResultBody = 
+        document()->createBody(data(), aResultIndex);
       loadNamingDS(aTransformAlgo, aResultBody, aBaseShape);
       setResult(aResultBody, aResultIndex);
     }
@@ -200,16 +203,16 @@ void FeaturesPlugin_Placement::loadNamingDS(GeomAlgoAPI_Transform& theTransformA
     case GeomAPI_Shape::SOLID:
     case GeomAPI_Shape::SHELL:
       theResultBody->loadAndOrientModifiedShapes(&theTransformAlgo,
-                                                 theBaseShape, GeomAPI_Shape::FACE,
-                                                 aPlacedTag, aPlacedName + "_Face", *aSubShapes.get());
+                                                theBaseShape, GeomAPI_Shape::FACE,
+                                        aPlacedTag, aPlacedName + "_Face", *aSubShapes.get());
     case GeomAPI_Shape::FACE:
     case GeomAPI_Shape::WIRE:
       theResultBody->loadAndOrientModifiedShapes(&theTransformAlgo,
                                                  theBaseShape, GeomAPI_Shape::EDGE,
-                                                 ++aPlacedTag, aPlacedName + "_Edge", *aSubShapes.get());
+                                        ++aPlacedTag, aPlacedName + "_Edge", *aSubShapes.get());
     case GeomAPI_Shape::EDGE:
       theResultBody->loadAndOrientModifiedShapes(&theTransformAlgo,
                                                  theBaseShape, GeomAPI_Shape::VERTEX,
-                                                 ++aPlacedTag, aPlacedName + "_Vertex", *aSubShapes.get());
+                                        ++aPlacedTag, aPlacedName + "_Vertex", *aSubShapes.get());
   }
 }