SHAPER  9.12.0
FeaturesPlugin_Fillet.h
1 // Copyright (C) 2017-2023 CEA, EDF
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 
30 {
31 public:
33  inline static const std::string& ID()
34  {
35  static const std::string MY_ID("Fillet");
36  return MY_ID;
37  }
38 
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 
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 
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 
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 
86  inline static const std::string& RADIUS_ID()
87  {
88  return START_RADIUS_ID();
89  }
90 
92  FEATURESPLUGIN_EXPORT virtual void initAttributes();
93 
96 
97 private:
99  virtual std::shared_ptr<ModelAPI_Attribute> objectsAttribute();
100 
102  virtual const std::string& modifiedShapePrefix() const;
103 
105  virtual std::shared_ptr<GeomAlgoAPI_MakeShape>
106  performOperation(const GeomShapePtr& theSolid, const ListOfShape& theEdges);
107 };
108 
109 #endif
Feature for applying the Fillet operations on Solids.
Definition: FeaturesPlugin_Fillet.h:30
virtual const std::string & getKind()
Definition: FeaturesPlugin_Fillet.h:40
static const std::string & OBJECT_LIST_ID()
Attribute name of main objects.
Definition: FeaturesPlugin_Fillet.h:65
FeaturesPlugin_Fillet()
Use plugin manager for features creation.
Definition: FeaturesPlugin_Fillet.cpp:45
static const std::string & RADIUS_ID()
Attribute name of a radius for fillet with fixed radius.
Definition: FeaturesPlugin_Fillet.h:86
static const std::string & END_RADIUS_ID()
Attribute name of end radius.
Definition: FeaturesPlugin_Fillet.h:79
static const std::string & START_RADIUS_ID()
Attribute name of start radius.
Definition: FeaturesPlugin_Fillet.h:72
static const std::string & ID()
Feature kind.
Definition: FeaturesPlugin_Fillet.h:33
virtual void initAttributes()
Request for initialization of data model of the feature: adding all attributes.
Definition: FeaturesPlugin_Fillet.cpp:49
Base feature for the Fillet and the Chamfer operations which supports versioning.
Definition: FeaturesPlugin_VersionedChFi.h:37