1 // Copyright (C) 2014-2019 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_SYMMETRY_H_
21 #define FEATURESPLUGIN_SYMMETRY_H_
23 #include <FeaturesPlugin.h>
25 #include <ModelAPI_Feature.h>
27 #include <GeomAlgoAPI_Symmetry.h>
28 #include <GeomAlgoAPI_MakeShapeList.h>
32 /** \class FeaturesPlugin_Symmetry
34 * \brief Feature that performs reflection with respect to a point, axis, or plane.
36 class FeaturesPlugin_Symmetry : public ModelAPI_Feature
40 inline static const std::string& ID()
42 static const std::string MY_SYMMETRY_ID("Symmetry");
43 return MY_SYMMETRY_ID;
46 /// Attribute name for creation method.
47 inline static const std::string& CREATION_METHOD()
49 static const std::string MY_CREATION_METHOD_ID("CreationMethod");
50 return MY_CREATION_METHOD_ID;
53 /// Attribute name for creation method "ByPoint".
54 inline static const std::string& CREATION_METHOD_BY_POINT()
56 static const std::string MY_CREATION_METHOD_ID("ByPoint");
57 return MY_CREATION_METHOD_ID;
60 /// Attribute name for creation method "ByAxis".
61 inline static const std::string& CREATION_METHOD_BY_AXIS()
63 static const std::string MY_CREATION_METHOD_ID("ByAxis");
64 return MY_CREATION_METHOD_ID;
67 /// Attribute name for creation method "ByPlane".
68 inline static const std::string& CREATION_METHOD_BY_PLANE()
70 static const std::string MY_CREATION_METHOD_ID("ByPlane");
71 return MY_CREATION_METHOD_ID;
74 /// Attribute name of referenced objects.
75 inline static const std::string& OBJECTS_LIST_ID()
77 static const std::string MY_OBJECTS_LIST_ID("main_objects");
78 return MY_OBJECTS_LIST_ID;
81 /// Attribute name of a point.
82 inline static const std::string& POINT_OBJECT_ID()
84 static const std::string MY_POINT_OBJECT_ID("point_object");
85 return MY_POINT_OBJECT_ID;
88 /// Attribute name of an axis.
89 inline static const std::string& AXIS_OBJECT_ID()
91 static const std::string MY_AXIS_OBJECT_ID("axis_object");
92 return MY_AXIS_OBJECT_ID;
95 /// Attribute name of a plane.
96 inline static const std::string& PLANE_OBJECT_ID()
98 static const std::string MY_PLANE_OBJECT_ID("plane_object");
99 return MY_PLANE_OBJECT_ID;
102 /// Attribute name of keeping original shape.
103 inline static const std::string& KEEP_ORIGINAL_RESULT()
105 static const std::string MY_KEEP_ORIGINAL_RESULT_ID("keep_original");
106 return MY_KEEP_ORIGINAL_RESULT_ID;
109 /// \return the kind of a feature.
110 FEATURESPLUGIN_EXPORT virtual const std::string& getKind()
112 static std::string MY_KIND = FeaturesPlugin_Symmetry::ID();
116 /// Creates a new part document if needed.
117 FEATURESPLUGIN_EXPORT virtual void execute();
119 /// Request for initialization of data model of the feature: adding all attributes.
120 FEATURESPLUGIN_EXPORT virtual void initAttributes();
122 /// Use plugin manager for features creation.
123 FeaturesPlugin_Symmetry();
126 /// Obtain list of source objects of the mirror
127 bool collectSourceObjects(ListOfShape& theSourceShapes,
128 std::list<std::shared_ptr<ModelAPI_Result>>& theSourceResults);
130 /// Perform symmetry with respect to a point.
131 void performSymmetryByPoint();
133 /// Perform symmetry with respect to an axis.
134 void performSymmetryByAxis();
136 /// Perform symmetry with respect to a plane.
137 void performSymmetryByPlane();
139 /// Create new result on given shapes and the index of result
140 void buildResult(std::shared_ptr<GeomAlgoAPI_Symmetry>& theSymmetryAlgo,
141 std::shared_ptr<GeomAPI_Shape> theBaseShape,
144 /// Create new result for the given part and transformation
145 void buildResult(std::shared_ptr<ModelAPI_ResultPart> theOriginal,
146 std::shared_ptr<GeomAPI_Trsf> theTrsf,
147 int& theResultIndex);
150 #endif // FEATURESPLUGIN_SYMMETRY_H_