X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_ExtrusionBoolean.cpp;h=4501a81911ea8e59d5b5e7cb1f4a5309bc43f9c5;hb=fb54db5e1466b16dfc029c4a7364a67a9a6a8c24;hp=fcc22448899360c476b1d66e6195f16acb046f96;hpb=7ae8f08629e5f99575f3cec07a8b701dd9209591;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_ExtrusionBoolean.cpp b/src/FeaturesPlugin/FeaturesPlugin_ExtrusionBoolean.cpp old mode 100644 new mode 100755 index fcc224488..4501a8191 --- a/src/FeaturesPlugin/FeaturesPlugin_ExtrusionBoolean.cpp +++ b/src/FeaturesPlugin/FeaturesPlugin_ExtrusionBoolean.cpp @@ -1,63 +1,31 @@ // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -// File: FeaturesPlugin_ExtrusionBoolean.h +// File: FeaturesPlugin_ExtrusionBoolean.cpp // Created: 11 June 2015 // Author: Dmitry Bobylev -#include - -#include -#include -#include -#include - -#include +#include "FeaturesPlugin_ExtrusionBoolean.h" //================================================================================================= -void FeaturesPlugin_ExtrusionBoolean::initMakeSolidsAttributes() +void FeaturesPlugin_ExtrusionBoolean::initAttributes() { - data()->addAttribute(FROM_OBJECT_ID(), ModelAPI_AttributeSelection::typeId()); - data()->addAttribute(FROM_SIZE_ID(), ModelAPI_AttributeDouble::typeId()); - - data()->addAttribute(TO_OBJECT_ID(), ModelAPI_AttributeSelection::typeId()); - data()->addAttribute(TO_SIZE_ID(), ModelAPI_AttributeDouble::typeId()); + FeaturesPlugin_Extrusion::initAttributes(); - ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), FROM_OBJECT_ID()); - ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), TO_OBJECT_ID()); + initBooleanAttributes(); } //================================================================================================= -ListOfShape FeaturesPlugin_ExtrusionBoolean::MakeSolids(const ListOfShape& theFaces) +bool FeaturesPlugin_ExtrusionBoolean::makeGeneration(ListOfShape& theBaseShapes, + ListOfMakeShape& theMakeShapes) { - // Getting extrusion bounding planes. - std::shared_ptr aFromShape; - std::shared_ptr aToShape; - std::shared_ptr anObjRef = selection(FROM_OBJECT_ID()); - if (anObjRef) { - aFromShape = std::dynamic_pointer_cast(anObjRef->value()); - } - anObjRef = selection(TO_OBJECT_ID()); - if (anObjRef) { - aToShape = std::dynamic_pointer_cast(anObjRef->value()); - } - - // Getting extrusion sizes. - double aFromSize = real(FROM_SIZE_ID())->value(); - double aToSize = real(TO_SIZE_ID())->value(); - - // Extrude faces. - ListOfShape anExtrusionList; - for(ListOfShape::const_iterator aFacesIt = theFaces.begin(); aFacesIt != theFaces.end(); aFacesIt++) { - std::shared_ptr aBaseShape = *aFacesIt; - GeomAlgoAPI_Prism aPrismAlgo(aBaseShape, aFromShape, aFromSize, aToShape, aToSize); - - // Checking that the algorithm worked properly. - if(!aPrismAlgo.isDone() || aPrismAlgo.shape()->isNull() || !aPrismAlgo.isValid()) { - setError("Extrusion algorithm failed"); - return ListOfShape(); - } - anExtrusionList.push_back(aPrismAlgo.shape()); - } + return makeExtrusions(theBaseShapes, theMakeShapes); +} - return anExtrusionList; -} \ No newline at end of file +//================================================================================================= +void FeaturesPlugin_ExtrusionBoolean::storeGenerationHistory(ResultBodyPtr theResultBody, + const GeomShapePtr theBaseShape, + const std::shared_ptr theMakeShape, + int& theTag) +{ + FeaturesPlugin_Extrusion::storeGenerationHistory(theResultBody, theBaseShape, theMakeShape, theTag); +}