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 PrimitivesPlugin_Box_H_
22 #define PrimitivesPlugin_Box_H_
24 #include <PrimitivesPlugin.h>
25 #include <ModelAPI_Feature.h>
26 #include <GeomAlgoAPI_Box.h>
29 class ModelAPI_ResultBody;
31 /**\class PrimitivesPlugin_Box
33 * \brief Feature for creation of a box primitive using various methods.
35 * Box creates a cuboid - Parallelepiped with 6 rectangular faces. It can be built via two
36 * methods : using two points that define a diagonal, or using 3 lengths that define the
37 * rectangular dimensions.
39 class PrimitivesPlugin_Box : public ModelAPI_Feature
43 inline static const std::string& ID()
45 static const std::string MY_BOX_ID("Box");
49 /// Attribute name for creation method
50 inline static const std::string& CREATION_METHOD()
52 static const std::string MY_CREATION_METHOD_ID("CreationMethod");
53 return MY_CREATION_METHOD_ID;
56 /// Attribute name for creation method
57 inline static const std::string& CREATION_METHOD_BY_DIMENSIONS()
59 static const std::string MY_CREATION_METHOD_ID("BoxByDimensions");
60 return MY_CREATION_METHOD_ID;
63 /// Attribute name for creation method
64 inline static const std::string& CREATION_METHOD_BY_TWO_POINTS()
66 static const std::string MY_CREATION_METHOD_ID("BoxByTwoPoints");
67 return MY_CREATION_METHOD_ID;
70 /// Attribute name of first point
71 inline static const std::string& POINT_FIRST_ID()
73 static const std::string MY_POINT_FIRST_ID("FirstPoint");
74 return MY_POINT_FIRST_ID;
77 /// Attribute name of second point
78 inline static const std::string& POINT_SECOND_ID()
80 static const std::string MY_POINT_SECOND_ID("SecondPoint");
81 return MY_POINT_SECOND_ID;
84 /// Attribute first coordinate
85 inline static const std::string& DX_ID()
87 static const std::string MY_DX_ID("dx");
91 /// Attribute second coordinate
92 inline static const std::string& DY_ID()
94 static const std::string MY_DY_ID("dy");
98 /// Attribute third coordinate
99 inline static const std::string& DZ_ID()
101 static const std::string MY_DZ_ID("dz");
105 /// Returns the kind of a feature
106 PRIMITIVESPLUGIN_EXPORT virtual const std::string& getKind()
108 static std::string MY_KIND = PrimitivesPlugin_Box::ID();
112 /// Creates a new part document if needed
113 PRIMITIVESPLUGIN_EXPORT virtual void execute();
115 /// Request for initialization of data model of the feature: adding all attributes
116 PRIMITIVESPLUGIN_EXPORT virtual void initAttributes();
118 /// Use plugin manager for features creation
119 PrimitivesPlugin_Box();
122 /// Load Naming data structure of the feature to the document
123 void loadNamingDS(std::shared_ptr<GeomAlgoAPI_Box> theBoxAlgo,
124 std::shared_ptr<ModelAPI_ResultBody> theResultBox);
126 ///Perform the creation of the box using two points defining a diagonal
127 void createBoxByTwoPoints();
129 ///Perform the creation of the box using three cordinates
130 void createBoxByDimensions();