Salome HOME
Fix compilation error on Linux. Part III.
[modules/shaper.git] / src / PythonAPI / model / __init__.py
index 1e158cca8f6c12034a7b7c5c483efc81c4e34731..3a8c553ae55484d033b6f615776865496ef2d784 100644 (file)
@@ -1,19 +1,26 @@
 """This package defines the Parametric Geometry API of the Modeler.
+
+All features are available via model.add*() functions. Exceptions are:
+- exportToFile() - from Exchange plugin
+- duplicatePart(), removePart() - from PartSet plugin
+- exportToGEOM() - from Connection plugin
 """
 
 # General purpose functions and abstract root classes
 
 from services  import *
 from roots     import *
+from tools import Selection
 
 # Built-in features
 
-from part      import Part            as addPart
 from sketcher.sketch  import addSketch
+from connection import *
 from construction import *
 from exchange import *
 from features import *
 from parameter import *
+from partset import *
 
 # Custom exceptions