]> SALOME platform Git repositories - modules/shaper.git/blob - src/PythonAPI/model/__init__.py
Salome HOME
Porting to SALOME 9.1.0.
[modules/shaper.git] / src / PythonAPI / model / __init__.py
1 """This package defines the Parametric Geometry API of the Modeler.
2
3 All features are available via model.add*() functions. Exceptions are:
4 - exportToFile() - from Exchange plugin
5 - duplicatePart(), removePart() - from PartSet plugin
6 - exportToGEOM() - from Connection plugin
7 """
8
9 # General purpose functions and abstract root classes
10
11 from .services  import *
12 from .roots     import *
13
14 # Built-in features
15
16 from .build import *
17 from .sketcher import *
18 from .connection import *
19 from .construction import *
20 from .exchange import *
21 from .features import *
22 from .collection import *
23 from .parameter import *
24 from .partset import *
25 from .primitives import *
26 from .gdml import *
27 from .tests import *