Salome HOME
52a502dbc4aea3fd2e6b145e670d7dc79b1d98b9
[modules/shaper.git] / src / BuildAPI / BuildAPI_Vertex.cpp
1 // Copyright (C) 2014-2023  CEA/DEN, EDF R&D
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 #include "BuildAPI_Vertex.h"
21
22 #include <ModelHighAPI_Dumper.h>
23 #include <ModelHighAPI_Tools.h>
24
25 //==================================================================================================
26 BuildAPI_Vertex::BuildAPI_Vertex(const std::shared_ptr<ModelAPI_Feature>& theFeature)
27 : ModelHighAPI_Interface(theFeature)
28 {
29   initialize();
30 }
31
32 //==================================================================================================
33 BuildAPI_Vertex::BuildAPI_Vertex(const std::shared_ptr<ModelAPI_Feature>& theFeature,
34                                  const std::list<ModelHighAPI_Selection>& theBaseObjects)
35 : ModelHighAPI_Interface(theFeature)
36 {
37   if(initialize()) {
38     fillAttribute(false, mydoIntersect);
39     setBase(theBaseObjects);
40   }
41 }
42
43 //==================================================================================================
44 BuildAPI_Vertex::BuildAPI_Vertex(const std::shared_ptr<ModelAPI_Feature>& theFeature,
45                                  const std::list<ModelHighAPI_Selection>& theBaseObjects,
46                                  const bool theDoIntersect)
47 : ModelHighAPI_Interface(theFeature)
48 {
49   if(initialize()) {
50     fillAttribute(theDoIntersect, mydoIntersect);
51     setBase(theBaseObjects);
52   }
53 }
54
55 //==================================================================================================
56 BuildAPI_Vertex::~BuildAPI_Vertex()
57 {
58
59 }
60
61 //==================================================================================================
62 void BuildAPI_Vertex::setBase(const std::list<ModelHighAPI_Selection>& theBaseObjects)
63 {
64   fillAttribute(theBaseObjects, mybaseObjects);
65
66   execute();
67 }
68
69 //==================================================================================================
70 VertexPtr addVertex(const std::shared_ptr<ModelAPI_Document>& thePart,
71                     const std::list<ModelHighAPI_Selection>& theBaseObjects)
72 {
73   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(BuildAPI_Vertex::ID());
74   return VertexPtr(new BuildAPI_Vertex(aFeature, theBaseObjects));
75 }
76
77 //==================================================================================================
78 VertexPtr addVertex(const std::shared_ptr<ModelAPI_Document>& thePart,
79                     const std::list<ModelHighAPI_Selection>& theBaseObjects,
80                     const bool theDoIntersect)
81 {
82   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(BuildAPI_Vertex::ID());
83   return VertexPtr(new BuildAPI_Vertex(aFeature, theBaseObjects, theDoIntersect));
84 }
85
86 //==================================================================================================
87 void BuildAPI_Vertex::dump(ModelHighAPI_Dumper& theDumper) const
88 {
89   FeaturePtr aBase = feature();
90   std::string aPartName = theDumper.name(aBase->document());
91
92   theDumper << aBase << " = model.addVertex(" << aPartName << ", "
93             << aBase->selectionList(BuildPlugin_Vertex::BASE_OBJECTS_ID()) << ", "
94             << aBase->boolean(BuildPlugin_Vertex::INTERSECT_ID()) << ")" << std::endl;
95 }