Salome HOME
[PythonAPI] Remove the word shaper from some places in PythonAPI
[modules/shaper.git] / src / PythonAPI / model / connection / connection.py
1 """Export to GEOM Interface
2 Author: Sergey Pokhodenko
3 Copyright (C) 2014-20xx CEA/DEN, EDF R&D
4 """
5
6 from model.roots import Interface
7
8
9 def exportToGEOM(part):
10     """Export the Part to GEOM module.
11
12     Args:
13         part (ModelAPI_Document): part document
14     """
15     feature = part.addFeature("ExportToGEOM")
16     feature.execute()