Salome HOME
Fix compilation error on Linux. Part III.
[modules/shaper.git] / src / PythonAPI / model / __init__.py
index f4fafd41b5d13c430c9bfce2e1a831d6c29b93a5..3a8c553ae55484d033b6f615776865496ef2d784 100644 (file)
@@ -1,16 +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 features  import *
+from connection import *
+from construction import *
+from exchange import *
+from features import *
+from parameter import *
+from partset import *
 
 # Custom exceptions