X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_Boolean.h;h=79d703174c72fae4afa847ed76a798e11263b17f;hb=b12bbd2a734142a2596a91c729b6670060b6b7e9;hp=53023300a90359148b8fccf7df6fde8152739e7f;hpb=5352bbb1915f98d1f02b1cb953a2de19b286a28c;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_Boolean.h b/src/FeaturesPlugin/FeaturesPlugin_Boolean.h index 53023300a..79d703174 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_Boolean.h +++ b/src/FeaturesPlugin/FeaturesPlugin_Boolean.h @@ -8,88 +8,80 @@ #define FeaturesPlugin_Cut_H_ #include "FeaturesPlugin.h" + +#include + #include -#include -#include - -/**\class FeaturesPlugin_Boolean - * \ingroup Plugins - * \brief Feature for applying of Boolean operations on Solids. - * - * Supports three kinds of Boolean operations: Cut, Fuse and Common. - * For all of them requires two Solids: object and tool. - */ + +/// \class FeaturesPlugin_Boolean +/// \ingroup Plugins +/// \brief Feature for applying of Boolean operations on Solids. +/// Supports four kinds of Boolean operations: Cut, Fuse, Common and Smash. class FeaturesPlugin_Boolean : public ModelAPI_Feature { public: - /// Extrusion kind + enum OperationType { + BOOL_CUT, + BOOL_FUSE, + BOOL_COMMON, + BOOL_FILL, + BOOL_SMASH + }; + + /// Feature kind. inline static const std::string& ID() { static const std::string MY_ID("Boolean"); return MY_ID; } - /// attribute name of referenced object + + /// Attribute name of main objects. inline static const std::string& OBJECT_LIST_ID() { static const std::string MY_OBJECT_LIST_ID("main_objects"); return MY_OBJECT_LIST_ID; } - /// attribute name of referenced object - inline static const std::string& OBJECT_ID() - { - static const std::string MY_OBJECT_ID("main_object"); - return MY_OBJECT_ID; - } - /// attribute name of tool object - inline static const std::string& TOOL_ID() - { - static const std::string MY_TOOL_ID("tool_object"); - return MY_TOOL_ID; - } - /// attribute name of tool object + + /// Attribute name of tool objects. inline static const std::string& TOOL_LIST_ID() { static const std::string MY_TOOL_LIST_ID("tool_objects"); return MY_TOOL_LIST_ID; } - /// attribute name of operation type + + /// Attribute name of operation type. inline static const std::string& TYPE_ID() { static const std::string MY_TYPE_ID("bool_type"); return MY_TYPE_ID; } - enum { - BOOL_CUT, - BOOL_FUSE, - BOOL_COMMON - }; - - /// Returns the kind of a feature + /// \return the kind of a feature. FEATURESPLUGIN_EXPORT virtual const std::string& getKind() { static std::string MY_KIND = FeaturesPlugin_Boolean::ID(); return MY_KIND; } - /// Creates a new part document if needed + /// Creates a new part document if needed. FEATURESPLUGIN_EXPORT virtual void execute(); - /// Request for initialization of data model of the feature: adding all attributes + /// Request for initialization of data model of the feature: adding all attributes. FEATURESPLUGIN_EXPORT virtual void initAttributes(); - /// Use plugin manager for features creation + /// Use plugin manager for features creation. FeaturesPlugin_Boolean(); private: std::shared_ptr getShape(const std::string& theAttrName); - + /// Load Naming data structure of the feature to the document - void LoadNamingDS(GeomAlgoAPI_Boolean* theFeature, - std::shared_ptr theResultBody, - std::shared_ptr theObject, - std::shared_ptr theTool, - int theType); + void loadNamingDS(std::shared_ptr theResultBody, + const std::shared_ptr theBaseShape, + const ListOfShape& theTools, + const std::shared_ptr theResultShape, + GeomAlgoAPI_MakeShape& theMakeShape, + GeomAPI_DataMapOfShapeShape& theMapOfShapes); }; #endif