Salome HOME
Added a test to check the naming of faces.
[modules/shaper.git] / src / PythonAPI / model / __init__.py
index f4fafd41b5d13c430c9bfce2e1a831d6c29b93a5..29364c692b38edf4074740ddaec6a2129bd1ce8b 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,11 +13,15 @@ from roots     import *
 
 # Built-in features
 
-from part      import Part            as addPart
-from sketcher.sketch  import addSketch
-from features  import *
-
-# Custom exceptions
-
-from errors import WrongNumberOfArguments
-from errors import FeatureInputInvalid
+from build import *
+from sketcher import *
+from connection import *
+from construction import *
+from exchange import *
+from features import *
+from collection import *
+from parameter import *
+from partset import *
+from primitives import *
+from gdml import *
+from tests import *