"""Package for Exchange plugin for the Parametric Geometry API of the Modeler.
"""
-from exchange import addImport, addExport
\ No newline at end of file
+from exchange import addImport, exportToFile
\ No newline at end of file
pass
-def addExport(part, *args):
+def exportToFile(part, *args):
"""Add an Export feature to the Part and return Export.
Pass all args to Export __init__ function.
"""Returns the Part document created by this feature."""
result_part = ModelAPI.modelAPI_ResultPart(self._feature.firstResult())
return result_part.partDoc()
-
-