Salome HOME
[PythonAPI / sketcher] added addArc method and the corresponding test + fix for point API
[modules/shaper.git] / src / PythonAPI / modeler / __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 extrusion import Extrusion       as addExtrusion
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