20 #ifndef FeaturesAPI_Extrusion_H_
21 #define FeaturesAPI_Extrusion_H_
23 #include "FeaturesAPI.h"
25 #include <FeaturesPlugin_Extrusion.h>
27 #include <ModelHighAPI_Interface.h>
28 #include <ModelHighAPI_Macro.h>
47 const std::list<ModelHighAPI_Selection>& theBaseObjects,
53 const std::list<ModelHighAPI_Selection>& theBaseObjects,
59 const std::list<ModelHighAPI_Selection>& theBaseObjects,
66 const std::list<ModelHighAPI_Selection>& theBaseObjects,
70 const std::string& theSelectionType = std::string());
75 const std::list<ModelHighAPI_Selection>& theBaseObjects,
84 const std::list<ModelHighAPI_Selection>& theBaseObjects,
90 const std::string& theSelectionType = std::string());
152 void execIfBaseNotEmpty();
189 const std::
string& theSelectionType = std::
string());
211 const std::
string& theSelectionType = std::
string());
Interface for Extrusion feature.
Definition: FeaturesAPI_Extrusion.h:38
void setSizes(const ModelHighAPI_Double &theToSize, const ModelHighAPI_Double &theFromSize)
Modify CreationMethod, to_size, from_size attributes of the feature.
Definition: FeaturesAPI_Extrusion.cpp:170
virtual std::shared_ptr< ModelAPI_AttributeSelectionList > baseObjects() const
Base objects.
Definition: FeaturesAPI_Extrusion.h:116
virtual ~FeaturesAPI_Extrusion()
Destructor.
Definition: FeaturesAPI_Extrusion.cpp:127
virtual std::shared_ptr< ModelAPI_AttributeDouble > toOffset() const
To offset.
Definition: FeaturesAPI_Extrusion.h:116
virtual std::shared_ptr< ModelAPI_AttributeSelection > direction() const
Direction.
Definition: FeaturesAPI_Extrusion.h:116
virtual std::shared_ptr< ModelAPI_AttributeDouble > toSize() const
To size.
Definition: FeaturesAPI_Extrusion.h:116
virtual std::shared_ptr< ModelAPI_AttributeReference > sketch() const
Sketch launcher.
Definition: FeaturesAPI_Extrusion.h:116
virtual void dump(ModelHighAPI_Dumper &theDumper) const
Dump wrapped feature.
Definition: FeaturesAPI_Extrusion.cpp:202
virtual std::shared_ptr< ModelAPI_AttributeDouble > fromOffset() const
From offset.
Definition: FeaturesAPI_Extrusion.h:116
void setNestedSketch(const ModelHighAPI_Reference &theSketch)
Modify base attribute of the feature.
Definition: FeaturesAPI_Extrusion.cpp:132
void setDirection(const ModelHighAPI_Selection &theDirection)
Modify direction_object attribute of the feature.
Definition: FeaturesAPI_Extrusion.cpp:162
virtual std::shared_ptr< ModelAPI_AttributeSelection > toObject() const
To object.
Definition: FeaturesAPI_Extrusion.h:116
virtual std::shared_ptr< ModelAPI_AttributeSelection > fromObject() const
From object.
Definition: FeaturesAPI_Extrusion.h:116
void setBase(const std::list< ModelHighAPI_Selection > &theBaseObjects)
Modify base attribute of the feature.
Definition: FeaturesAPI_Extrusion.cpp:152
void setPlanesAndOffsets(const ModelHighAPI_Selection &theToObject, const ModelHighAPI_Double &theToOffset, const ModelHighAPI_Selection &theFromObject, const ModelHighAPI_Double &theFromOffset)
Modify creation_method, to_object, to_offset, from_object, from_offset attributes of the feature.
Definition: FeaturesAPI_Extrusion.cpp:187
void setSize(const ModelHighAPI_Double &theSize)
Modify creation_method, to_size, from_size attributes of the feature.
Definition: FeaturesAPI_Extrusion.cpp:181
virtual std::shared_ptr< ModelAPI_AttributeString > creationMethod() const
Creation method.
Definition: FeaturesAPI_Extrusion.h:116
virtual std::shared_ptr< ModelAPI_AttributeDouble > fromSize() const
From size.
Definition: FeaturesAPI_Extrusion.h:116
FeaturesAPI_Extrusion(const std::shared_ptr< ModelAPI_Feature > &theFeature)
Constructor without values.
Definition: FeaturesAPI_Extrusion.cpp:28
static const std::string & BASE_OBJECTS_ID()
Attribute name of base objects.
Definition: FeaturesPlugin_CompositeSketch.h:43
static const std::string & SKETCH_ID()
Attribute name of sketch feature.
Definition: FeaturesPlugin_CompositeSketch.h:36
static const std::string & CREATION_METHOD()
Attribute name for creation method.
Definition: FeaturesPlugin_Extrusion.h:50
static const std::string & FROM_SIZE_ID()
Attribute name of extrusion from size.
Definition: FeaturesPlugin_Extrusion.h:92
static const std::string & TO_SIZE_ID()
Attribute name of extrusion to size.
Definition: FeaturesPlugin_Extrusion.h:85
static const std::string & TO_OBJECT_ID()
Attribute name of an object to which the extrusion grows.
Definition: FeaturesPlugin_Extrusion.h:99
static const std::string & FROM_OBJECT_ID()
Attribute name of an object from which the extrusion grows.
Definition: FeaturesPlugin_Extrusion.h:113
static const std::string & DIRECTION_OBJECT_ID()
Attribute name of an object to which the extrusion grows.
Definition: FeaturesPlugin_Extrusion.h:78
static const std::string & ID()
Feature kind.
Definition: FeaturesPlugin_Extrusion.h:43
static const std::string & TO_OFFSET_ID()
Attribute name of extrusion offset.
Definition: FeaturesPlugin_Extrusion.h:106
static const std::string & FROM_OFFSET_ID()
Attribute name of extrusion offset.
Definition: FeaturesPlugin_Extrusion.h:120
Attribute that contains real value with double precision.
Definition: ModelAPI_AttributeDouble.h:34
Attribute that contains reference to feature (located in the same document).
Definition: ModelAPI_AttributeReference.h:32
Attribute that contains list of references to the sub-shapes with possibility to manage them.
Definition: ModelAPI_AttributeSelectionList.h:37
Attribute that contains reference to the sub-shape of some result, the selected shape.
Definition: ModelAPI_AttributeSelection.h:35
API for the attribute that contains std (null terminated) string.
Definition: ModelAPI_AttributeString.h:33
Document for internal data structure of any object storage.
Definition: ModelAPI_Document.h:53
Class for filling ModelAPI_AttributeDouble.
Definition: ModelHighAPI_Double.h:37
Dump engine for the model.
Definition: ModelHighAPI_Dumper.h:81
Base class for feature interfaces.
Definition: ModelHighAPI_Interface.h:46
Class for filling ModelAPI_AttributeReference.
Definition: ModelHighAPI_Reference.h:41
Class for filling ModelAPI_AttributeSelection.
Definition: ModelHighAPI_Selection.h:49
ExtrusionPtr addExtrusion(const std::shared_ptr< ModelAPI_Document > &thePart, const std::list< ModelHighAPI_Selection > &theBaseObjects, const ModelHighAPI_Double &theSize)
Create Extrusion feature.
Definition: FeaturesAPI_Extrusion.cpp:265