X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_ExtrusionBoolean.h;h=b9efd63f6f2fc7fa47dea7e517df0afd5735ef19;hb=33c5fdce3cd63dd95a738439a0399dd982abcd73;hp=8fd63449f45f3af31475a6d6785744f8eba45a42;hpb=7e53ef4d34d299d8f78e72795b0178238ded5874;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_ExtrusionBoolean.h b/src/FeaturesPlugin/FeaturesPlugin_ExtrusionBoolean.h index 8fd63449f..b9efd63f6 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_ExtrusionBoolean.h +++ b/src/FeaturesPlugin/FeaturesPlugin_ExtrusionBoolean.h @@ -11,6 +11,7 @@ /** \class FeaturesPlugin_ExtrusionBoolean * \ingroup Plugins + * \brief Interface for the composite extrusion feature. */ class FeaturesPlugin_ExtrusionBoolean : public FeaturesPlugin_CompositeBoolean { @@ -23,14 +24,14 @@ class FeaturesPlugin_ExtrusionBoolean : public FeaturesPlugin_CompositeBoolean return METHOD_ATTR; } - /// Attribute name of an object from which the extrusion grows. - inline static const std::string& FROM_OBJECT_ID() + /// attribute name of extrusion size + inline static const std::string& TO_SIZE_ID() { - static const std::string MY_FROM_OBJECT_ID("from_object"); - return MY_FROM_OBJECT_ID; + static const std::string MY_TO_SIZE_ID("to_size"); + return MY_TO_SIZE_ID; } - /// Attribute name of extrusion from size. + /// attribute name of extrusion size inline static const std::string& FROM_SIZE_ID() { static const std::string MY_FROM_SIZE_ID("from_size"); @@ -44,11 +45,25 @@ class FeaturesPlugin_ExtrusionBoolean : public FeaturesPlugin_CompositeBoolean return MY_TO_OBJECT_ID; } - /// Attribute name of extrusion to size. - inline static const std::string& TO_SIZE_ID() + /// attribute name of extrusion offset + inline static const std::string& TO_OFFSET_ID() { - static const std::string MY_TO_SIZE_ID("to_size"); - return MY_TO_SIZE_ID; + static const std::string MY_TO_OFFSET_ID("to_offset"); + return MY_TO_OFFSET_ID; + } + + /// Attribute name of an object from which the extrusion grows. + inline static const std::string& FROM_OBJECT_ID() + { + static const std::string MY_FROM_OBJECT_ID("from_object"); + return MY_FROM_OBJECT_ID; + } + + /// attribute name of extrusion offset + inline static const std::string& FROM_OFFSET_ID() + { + static const std::string MY_FROM_OFFSET_ID("from_offset"); + return MY_FROM_OFFSET_ID; } protected: @@ -56,7 +71,9 @@ protected: virtual void initMakeSolidsAttributes(); /// Create solids from faces with extrusion. - virtual ListOfShape MakeSolids(const ListOfShape& theFaces); + virtual void makeSolids(const ListOfShape& theFaces, + ListOfShape& theResults, + ListOfMakeShape& theAlgos); protected: FeaturesPlugin_ExtrusionBoolean(){};