Salome HOME
5ccb854e0f43fd8068453478fb611bb8c106fd2e
[modules/shaper.git] / src / BuildAPI / BuildAPI_Edge.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        BuildAPI_Edge.cpp
4 // Created:     09 June 2016
5 // Author:      Dmitry Bobylev
6
7 #include "BuildAPI_Edge.h"
8
9 #include <ModelHighAPI_Tools.h>
10
11 //==================================================================================================
12 BuildAPI_Edge::BuildAPI_Edge(const std::shared_ptr<ModelAPI_Feature>& theFeature)
13 : ModelHighAPI_Interface(theFeature)
14 {
15   initialize();
16 }
17
18 //==================================================================================================
19 BuildAPI_Edge::BuildAPI_Edge(const std::shared_ptr<ModelAPI_Feature>& theFeature,
20                              const std::list<ModelHighAPI_Selection>& theBaseObjects)
21 : ModelHighAPI_Interface(theFeature)
22 {
23   if(initialize()) {
24     setBase(theBaseObjects);
25   }
26 }
27
28 //==================================================================================================
29 BuildAPI_Edge::~BuildAPI_Edge()
30 {
31
32 }
33
34 //==================================================================================================
35 void BuildAPI_Edge::setBase(const std::list<ModelHighAPI_Selection>& theBaseObjects)
36 {
37   fillAttribute(theBaseObjects, mybaseObjects);
38
39   execute();
40 }
41
42 // TODO(spo): make add* as static functions of the class
43 //==================================================================================================
44 EdgePtr addEdge(const std::shared_ptr<ModelAPI_Document>& thePart,
45                 const std::list<ModelHighAPI_Selection>& theBaseObjects)
46 {
47   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(BuildAPI_Edge::ID());
48   return EdgePtr(new BuildAPI_Edge(aFeature, theBaseObjects));
49 }