Salome HOME
Merge branch 'Dev_1.5.0' into BR_REENTRANCE_OPERATION
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_RevolutionSketch.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        FeaturesPlugin_RevolutionSketch.h
4 // Created:     11 September 2015
5 // Author:      Dmitry Bobylev
6
7 #ifndef FeaturesPlugin_RevolutionSketch_H_
8 #define FeaturesPlugin_RevolutionSketch_H_
9
10 #include <FeaturesPlugin_CompositeSketch.h>
11
12 /** \class FeaturesPlugin_RevolutionSketch
13  *  \ingroup Plugins
14  *  \brief This feature allows to create sketch and revol faces from this sketch 
15  *         in a single operation.
16  */
17 class FeaturesPlugin_RevolutionSketch : public FeaturesPlugin_CompositeSketch
18 {
19 public:
20   /// Feature kind.
21   inline static const std::string& ID()
22   {
23     static const std::string MY_REVOLUTION_ID("RevolutionSketch");
24     return MY_REVOLUTION_ID;
25   }
26
27   /// \return the kind of a feature
28   FEATURESPLUGIN_EXPORT virtual const std::string& getKind()
29   {
30     static std::string MY_KIND = FeaturesPlugin_RevolutionSketch::ID();
31     return MY_KIND;
32   }
33
34   /// Attribute name of an revolution axis.
35   inline static const std::string& AXIS_OBJECT_ID()
36   {
37     static const std::string MY_AXIS_ID("axis_object");
38     return MY_AXIS_ID;
39   }
40
41   /// attribute name for creation method
42   inline static const std::string& CREATION_METHOD()
43   {
44     static const std::string METHOD_ATTR("CreationMethod");
45     return METHOD_ATTR;
46   }
47
48   /// Attribute name of revolution to angle.
49   inline static const std::string& TO_ANGLE_ID()
50   {
51     static const std::string MY_TO_ANGLE_ID("to_angle");
52     return MY_TO_ANGLE_ID;
53   }
54
55   /// Attribute name of revolution from angle.
56   inline static const std::string& FROM_ANGLE_ID()
57   {
58     static const std::string MY_FROM_ANGLE_ID("from_angle");
59     return MY_FROM_ANGLE_ID;
60   }
61   
62   /// Attribute name of an object to which the revolution grows.
63   inline static const std::string& TO_OBJECT_ID()
64   {
65     static const std::string MY_TO_OBJECT_ID("to_object");
66     return MY_TO_OBJECT_ID;
67   }
68
69   /// Attribute name of extrusion offset.
70   inline static const std::string& TO_OFFSET_ID()
71   {
72     static const std::string MY_TO_OFFSET_ID("to_offset");
73     return MY_TO_OFFSET_ID;
74   }
75
76   /// Attribute name of an object from which the revolution grows.
77   inline static const std::string& FROM_OBJECT_ID()
78   {
79     static const std::string MY_FROM_OBJECT_ID("from_object");
80     return MY_FROM_OBJECT_ID;
81   }
82
83   /// Attribute name of extrusion offset.
84   inline static const std::string& FROM_OFFSET_ID()
85   {
86     static const std::string MY_FROM_OFFSET_ID("from_offset");
87     return MY_FROM_OFFSET_ID;
88   }
89
90 protected:
91   /// Init attributes for revolution.
92   virtual void initMakeSolidsAttributes();
93
94   /// Create solids from faces with revolution.
95   virtual void makeSolid(const std::shared_ptr<GeomAPI_Shape> theFace,
96                          std::shared_ptr<GeomAPI_Shape>& theResult,
97                          ListOfShape& theFromFaces,
98                          ListOfShape& theToFaces,
99                          std::shared_ptr<GeomAlgoAPI_MakeShape>& theMakeShape,
100                          std::shared_ptr<GeomAPI_DataMapOfShapeShape>& theDataMap);
101
102 public:
103   /// Use plugin manager for features creation.
104   FeaturesPlugin_RevolutionSketch();
105 };
106
107 #endif