1 // Copyright (C) 2017-2020 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #ifndef FeaturesPlugin_Chamfer_H_
21 #define FeaturesPlugin_Chamfer_H_
23 #include "FeaturesPlugin_VersionedChFi.h"
25 /// \class FeaturesPlugin_Chamfer
27 /// \brief Feature for applying the Chamfer operations on Solids.
28 /// Supports two distances chamfer and distance-angle chamfer.
29 class FeaturesPlugin_Chamfer : public FeaturesPlugin_VersionedChFi
33 inline static const std::string& ID()
35 static const std::string MY_ID("Chamfer");
39 /// \return the kind of a feature.
40 FEATURESPLUGIN_EXPORT virtual const std::string& getKind()
42 static std::string MY_KIND = FeaturesPlugin_Chamfer::ID();
46 inline static const std::string& CREATION_METHOD()
48 static std::string MY_CREATION_METHOD("creation_method");
49 return MY_CREATION_METHOD;
52 inline static const std::string CREATION_METHOD_DISTANCE_DISTANCE()
54 static std::string MY_SINGLE_RADIUS("distance_distance");
55 return MY_SINGLE_RADIUS;
58 inline static const std::string CREATION_METHOD_DISTANCE_ANGLE()
60 static std::string MY_VARYING_RADIUS("distance_angle");
61 return MY_VARYING_RADIUS;
64 /// Attribute name of main objects.
65 inline static const std::string& OBJECT_LIST_ID()
67 static const std::string MY_OBJECT_LIST_ID("main_objects");
68 return MY_OBJECT_LIST_ID;
71 /// Attribute name of D1.
72 inline static const std::string& D1_ID()
74 static const std::string MY_D1_ID("d1");
78 /// Attribute name of D2.
79 inline static const std::string& D2_ID()
81 static const std::string MY_D2_ID("d2");
85 /// Attribute name of D.
86 inline static const std::string& D_ID()
88 static const std::string MY_D_ID("d");
92 /// Attribute name of Angle.
93 inline static const std::string& ANGLE_ID()
95 static const std::string MY_ANGLE_ID("angle");
99 /// Request for initialization of data model of the feature: adding all attributes.
100 FEATURESPLUGIN_EXPORT virtual void initAttributes();
102 /// Use plugin manager for features creation.
103 FeaturesPlugin_Chamfer();
106 /// Return attribute storing the selected objects of the operation.
107 virtual std::shared_ptr<ModelAPI_Attribute> objectsAttribute();
109 /// Return name of modified shape prefix name
110 virtual const std::string& modifiedShapePrefix() const;
112 /// Run chamfer/fillet operation and returns the modification algorithm if succeed.
113 virtual std::shared_ptr<GeomAlgoAPI_MakeShape>
114 performOperation(const GeomShapePtr& theSolid, const ListOfShape& theEdges);