X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesAPI%2FFeaturesAPI_Extrusion.cpp;h=6d49af50ffc8baacf7b6abfe1e141889c2a9296f;hb=06e7f5859095193fc7f498bd89a7d28009794f53;hp=ea7fe5331019f6d6e5581baeb9dd0fd795e73e7a;hpb=c4eab94a20a0d93100549a210582d46409fec1cc;p=modules%2Fshaper.git diff --git a/src/FeaturesAPI/FeaturesAPI_Extrusion.cpp b/src/FeaturesAPI/FeaturesAPI_Extrusion.cpp index ea7fe5331..6d49af50f 100644 --- a/src/FeaturesAPI/FeaturesAPI_Extrusion.cpp +++ b/src/FeaturesAPI/FeaturesAPI_Extrusion.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// Copyright (C) 2014-2023 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -75,10 +75,13 @@ FeaturesAPI_Extrusion::FeaturesAPI_Extrusion(const std::shared_ptr& theBaseObjects, const ModelHighAPI_Selection& theDirection, const ModelHighAPI_Double& theToSize, - const ModelHighAPI_Double& theFromSize) + const ModelHighAPI_Double& theFromSize, + const std::string& theSelectionType) : ModelHighAPI_Interface(theFeature) { if(initialize()) { + if (!theSelectionType.empty()) + mybaseObjects->setSelectionType(theSelectionType); fillAttribute(theBaseObjects, mybaseObjects); fillAttribute(theDirection, mydirection); setSizes(theToSize, theFromSize); @@ -107,10 +110,13 @@ FeaturesAPI_Extrusion::FeaturesAPI_Extrusion(const std::shared_ptrsetSelectionType(theSelectionType); fillAttribute(theBaseObjects, mybaseObjects); fillAttribute(theDirection, mydirection); setPlanesAndOffsets(theToObject, theToOffset, theFromObject, theFromOffset); @@ -228,6 +234,18 @@ void FeaturesAPI_Extrusion::dump(ModelHighAPI_Dumper& theDumper) const ", " << anAttrFromObject << ", " << anAttrFromOffset; } + // write explicitly the type of selection if it does not correspond + // to the type of first selected shape + if (!anAttrSketch->isInitialized()) { + std::string aListSelType = anAttrObjects->selectionType(); + AttributeSelectionPtr aFirstSelection = anAttrObjects->value(0); + GeomShapePtr aFirstShape = aFirstSelection->value(); + if (!aFirstShape) + aFirstShape = aFirstSelection->context()->shape(); + if (!aFirstShape || aFirstShape->shapeType() != GeomAPI_Shape::shapeTypeByStr(aListSelType)) + theDumper << ", \"" << aListSelType << "\""; + } + theDumper << ")" << std::endl; if(anAttrSketch->isInitialized()) { @@ -277,14 +295,16 @@ ExtrusionPtr addExtrusion(const std::shared_ptr& thePart, const std::list& theBaseObjects, const ModelHighAPI_Selection& theDirection, const ModelHighAPI_Double& theToSize, - const ModelHighAPI_Double& theFromSize) + const ModelHighAPI_Double& theFromSize, + const std::string& theSelectionType) { std::shared_ptr aFeature = thePart->addFeature(FeaturesAPI_Extrusion::ID()); return ExtrusionPtr(new FeaturesAPI_Extrusion(aFeature, theBaseObjects, theDirection, theToSize, - theFromSize)); + theFromSize, + theSelectionType)); } //================================================================================================== @@ -311,7 +331,8 @@ ExtrusionPtr addExtrusion(const std::shared_ptr& thePart, const ModelHighAPI_Selection& theToObject, const ModelHighAPI_Double& theToOffset, const ModelHighAPI_Selection& theFromObject, - const ModelHighAPI_Double& theFromOffset) + const ModelHighAPI_Double& theFromOffset, + const std::string& theSelectionType) { std::shared_ptr aFeature = thePart->addFeature(FeaturesAPI_Extrusion::ID()); return ExtrusionPtr(new FeaturesAPI_Extrusion(aFeature, @@ -320,5 +341,6 @@ ExtrusionPtr addExtrusion(const std::shared_ptr& thePart, theToObject, theToOffset, theFromObject, - theFromOffset)); + theFromOffset, + theSelectionType)); }