1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: FeaturesPlugin_Revolution.h
4 // Created: 12 May 2015
5 // Author: Dmitry Bobylev
7 #ifndef FeaturesPlugin_Revolution_H_
8 #define FeaturesPlugin_Revolution_H_
10 #include <FeaturesPlugin.h>
12 #include <GeomAlgoAPI_Revolution.h>
13 #include <ModelAPI_Feature.h>
16 class ModelAPI_ResultBody;
18 /** \class FeaturesPlugin_Revolution
20 * \brief Feature for creation of revolution from the planar face.
21 * Revolution creates the lateral faces based on edges of the base face and
22 * the start and end faces and/or start and end angles.
24 class FeaturesPlugin_Revolution : public ModelAPI_Feature
28 inline static const std::string& ID()
30 static const std::string MY_REVOLUTION_ID("Revolution");
31 return MY_REVOLUTION_ID;
34 /// Attribute name of references sketch entities list, it should contain a sketch result or
35 /// a pair a sketch result to sketch face.
36 inline static const std::string& LIST_ID()
38 static const std::string MY_GROUP_LIST_ID("base");
39 return MY_GROUP_LIST_ID;
42 /// Attribute name of an revolution axis.
43 inline static const std::string& AXIS_OBJECT_ID()
45 static const std::string MY_AXIS_ID("axis_object");
49 /// Attribute name of revolution angle.
50 inline static const std::string& TO_ANGLE_ID()
52 static const std::string MY_TO_ANGLE_ID("to_angle");
53 return MY_TO_ANGLE_ID;
56 /// Attribute name of revolution angle.
57 inline static const std::string& FROM_ANGLE_ID()
59 static const std::string MY_FROM_ANGLE_ID("from_angle");
60 return MY_FROM_ANGLE_ID;
63 /// Attribute name of an object to which the revolution grows.
64 inline static const std::string& TO_OBJECT_ID()
66 static const std::string MY_TO_OBJECT_ID("to_object");
67 return MY_TO_OBJECT_ID;
70 /// Attribute name of tool object.
71 inline static const std::string& FROM_OBJECT_ID()
73 static const std::string MY_FROM_OBJECT_ID("from_object");
74 return MY_FROM_OBJECT_ID;
77 /// \return the kind of a feature.
78 FEATURESPLUGIN_EXPORT virtual const std::string& getKind()
80 static std::string MY_KIND = FeaturesPlugin_Revolution::ID();
84 /// Creates a new part document if needed.
85 FEATURESPLUGIN_EXPORT virtual void execute();
87 /// Request for initialization of data model of the feature: adding all attributes.
88 FEATURESPLUGIN_EXPORT virtual void initAttributes();
90 /// Use plugin manager for features creation.
91 FeaturesPlugin_Revolution();
94 /// Load Naming data structure of the feature to the document.
95 void LoadNamingDS(GeomAlgoAPI_Revolution& theFeature, std::shared_ptr<ModelAPI_ResultBody> theResultBody,
96 std::shared_ptr<GeomAPI_Shape> theBasis,
97 std::shared_ptr<GeomAPI_Shape> theContext);