Salome HOME
Add revolution and repackage Features plugin interface.
[modules/shaper.git] / src / PythonAPI / model / __init__.py
1 """This package defines the Parametric Geometry API of the Modeler.
2 """
3
4 # General purpose functions and abstract root classes
5
6 from services  import *
7 from roots     import *
8
9 # Built-in features
10
11 from part      import Part            as addPart
12 from sketcher.sketch  import addSketch
13 from features  import *
14 from boolean   import Addition        as addAddition
15 from boolean   import Subtraction     as addSubtraction
16 from boolean   import Intersection    as addIntersection
17
18 # Custom exceptions
19
20 from errors import WrongNumberOfArguments
21 from errors import FeatureInputInvalid