Salome HOME
Add assertions to set attribute for features.
[modules/shaper.git] / src / PythonAPI / model / __init__.py
index 1f90375a49a0758b9fbb3800a30aab3ffe477bb0..fff3117224239a9d009053ff0d03a6f4d02a417d 100644 (file)
@@ -1,4 +1,9 @@
 """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
@@ -8,10 +13,12 @@ from roots     import *
 
 # Built-in features
 
-from part      import Part            as addPart
 from sketcher.sketch  import addSketch
 from construction import *
+from exchange import *
 from features import *
+from parameter import *
+from partset import *
 
 # Custom exceptions