1 // Copyright (C) 2014-2017 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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #ifndef FeaturesPlugin_Placement_H_
22 #define FeaturesPlugin_Placement_H_
24 #include "FeaturesPlugin.h"
25 #include <ModelAPI_Feature.h>
26 #include <GeomAlgoAPI_Placement.h>
27 #include <GeomAlgoAPI_Transform.h>
29 class ModelAPI_ResultBody;
32 /**\class FeaturesPlugin_Placement
34 * \brief Feature for applying of placement operation: relative movement of Solid.
36 * Locates the selected placement_attractable_object (face, edge, vertex) of the solid into
37 * the selected placement_base_object. Faces must be planar, edges must be linear.
38 * Orientation of the placed solid depends on the underlied planes of both faces.
40 class FeaturesPlugin_Placement : public ModelAPI_Feature
44 inline static const std::string& ID()
46 static const std::string MY_PLACEMENT_ID("Placement");
47 return MY_PLACEMENT_ID;
50 /// attribute name of references sketch entities list, it should contain a sketch result or
51 /// a pair a sketch result to sketch face
52 inline static const std::string& OBJECTS_LIST_ID()
54 static const std::string MY_OBJECTS_LIST_ID("placement_objects_list");
55 return MY_OBJECTS_LIST_ID;
58 /// attribute name of referenced object
59 inline static const std::string& START_SHAPE_ID()
61 static const std::string MY_START_SHAPE_ID("placement_start_shape");
62 return MY_START_SHAPE_ID;
64 /// attribute name of attractable face
65 inline static const std::string& END_SHAPE_ID()
67 static const std::string MY_END_SHAPE_ID("placement_end_shape");
68 return MY_END_SHAPE_ID;
70 /// attribute name of flag of reverse direction
71 inline static const std::string& REVERSE_ID()
73 static const std::string MY_REVERSE_ID("placement_reverse_direction");
76 /// attribute name of flag of centering position
77 inline static const std::string& CENTERING_ID()
79 static const std::string MY_CENTERING_ID("placement_centering");
80 return MY_CENTERING_ID;
83 /// Returns the kind of a feature
84 FEATURESPLUGIN_EXPORT virtual const std::string& getKind()
86 static std::string MY_KIND = FeaturesPlugin_Placement::ID();
90 /// Creates a new part document if needed
91 FEATURESPLUGIN_EXPORT virtual void execute();
93 /// Request for initialization of data model of the feature: adding all attributes
94 FEATURESPLUGIN_EXPORT virtual void initAttributes();
96 /// Use plugin manager for features creation
97 FeaturesPlugin_Placement();
99 /// Load Naming data structure of the feature to the document
100 void loadNamingDS(GeomAlgoAPI_Transform& theTransformAlgo,
101 std::shared_ptr<ModelAPI_ResultBody> theResultBody,
102 std::shared_ptr<GeomAPI_Shape> theBaseShape);