Salome HOME
Issue #1648: Dump Python in the High Level Parameterized Geometry API
[modules/shaper.git] / src / BuildAPI / BuildAPI_Face.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        BuildAPI_Face.cpp
4 // Created:     09 June 2016
5 // Author:      Dmitry Bobylev
6
7 #include "BuildAPI_Face.h"
8
9 #include <ModelHighAPI_Dumper.h>
10 #include <ModelHighAPI_Tools.h>
11
12 //==================================================================================================
13 BuildAPI_Face::BuildAPI_Face(const std::shared_ptr<ModelAPI_Feature>& theFeature)
14 : ModelHighAPI_Interface(theFeature)
15 {
16   initialize();
17 }
18
19 //==================================================================================================
20 BuildAPI_Face::BuildAPI_Face(const std::shared_ptr<ModelAPI_Feature>& theFeature,
21                              const std::list<ModelHighAPI_Selection>& theBaseObjects)
22 : ModelHighAPI_Interface(theFeature)
23 {
24   if(initialize()) {
25     setBase(theBaseObjects);
26   }
27 }
28
29 //==================================================================================================
30 BuildAPI_Face::~BuildAPI_Face()
31 {
32
33 }
34
35 //==================================================================================================
36 void BuildAPI_Face::setBase(const std::list<ModelHighAPI_Selection>& theBaseObjects)
37 {
38   fillAttribute(theBaseObjects, mybaseObjects);
39
40   execute();
41 }
42
43 //==================================================================================================
44 void BuildAPI_Face::dump(ModelHighAPI_Dumper& theDumper) const
45 {
46   FeaturePtr aBase = feature();
47   std::string aPartName = theDumper.name(aBase->document());
48
49   theDumper << aBase << " = model.addFace(" << aPartName << ", "
50             << aBase->selectionList(BuildPlugin_Face::BASE_OBJECTS_ID()) << ")" << std::endl;
51 }
52
53 //==================================================================================================
54 FacePtr addFace(const std::shared_ptr<ModelAPI_Document>& thePart,
55                 const std::list<ModelHighAPI_Selection>& theBaseObjects)
56 {
57   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(BuildAPI_Face::ID());
58   return FacePtr(new BuildAPI_Face(aFeature, theBaseObjects));
59 }