Salome HOME
784c585bb005858b97f9c2f004adbf9b537bcd5c
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_Fillet.h
1 // Copyright (C) 2017-2022  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef FeaturesPlugin_Fillet_H_
21 #define FeaturesPlugin_Fillet_H_
22
23 #include "FeaturesPlugin_VersionedChFi.h"
24
25 /// \class FeaturesPlugin_Fillet
26 /// \ingroup Plugins
27 /// \brief Feature for applying the Fillet operations on Solids.
28 ///        Supports fixed radius fillet and varying 2-radius fillet.
29 class FeaturesPlugin_Fillet : public FeaturesPlugin_VersionedChFi
30 {
31 public:
32   /// Feature kind.
33   inline static const std::string& ID()
34   {
35     static const std::string MY_ID("Fillet");
36     return MY_ID;
37   }
38
39   /// \return the kind of a feature.
40   FEATURESPLUGIN_EXPORT virtual const std::string& getKind()
41   {
42     static std::string MY_KIND = FeaturesPlugin_Fillet::ID();
43     return MY_KIND;
44   }
45
46   inline static const std::string& CREATION_METHOD()
47   {
48     static std::string MY_CREATION_METHOD("creation_method");
49     return MY_CREATION_METHOD;
50   }
51
52   inline static const std::string CREATION_METHOD_SINGLE_RADIUS()
53   {
54     static std::string MY_SINGLE_RADIUS("fixed_radius");
55     return MY_SINGLE_RADIUS;
56   }
57
58   inline static const std::string CREATION_METHOD_VARYING_RADIUS()
59   {
60     static std::string MY_VARYING_RADIUS("variable_radius");
61     return MY_VARYING_RADIUS;
62   }
63
64   /// Attribute name of main objects.
65   inline static const std::string& OBJECT_LIST_ID()
66   {
67     static const std::string MY_OBJECT_LIST_ID("main_objects");
68     return MY_OBJECT_LIST_ID;
69   }
70
71   /// Attribute name of start radius.
72   inline static const std::string& START_RADIUS_ID()
73   {
74     static const std::string MY_START_RADIUS_ID("radius1");
75     return MY_START_RADIUS_ID;
76   }
77
78   /// Attribute name of end radius.
79   inline static const std::string& END_RADIUS_ID()
80   {
81     static const std::string MY_END_RADIUS_ID("radius2");
82     return MY_END_RADIUS_ID;
83   }
84
85   /// Attribute name of a radius for fillet with fixed radius.
86   inline static const std::string& RADIUS_ID()
87   {
88     return START_RADIUS_ID();
89   }
90
91   /// Request for initialization of data model of the feature: adding all attributes.
92   FEATURESPLUGIN_EXPORT virtual void initAttributes();
93
94   /// Use plugin manager for features creation.
95   FeaturesPlugin_Fillet();
96
97 private:
98   /// Return attribute storing the selected objects of the operation.
99   virtual std::shared_ptr<ModelAPI_Attribute> objectsAttribute();
100
101   /// Return name of modified shape prefix name
102   virtual const std::string& modifiedShapePrefix() const;
103
104   /// Run chamfer/fillet operation and returns the modification algorithm if succeed.
105   virtual std::shared_ptr<GeomAlgoAPI_MakeShape>
106       performOperation(const GeomShapePtr& theSolid, const ListOfShape& theEdges);
107 };
108
109 #endif