]> SALOME platform Git repositories - modules/shaper.git/blob - src/PythonAPI/model/features/revolution_boolean.py
Salome HOME
4f50c49415830f6dfb36f3568588b2eaf02466fb
[modules/shaper.git] / src / PythonAPI / model / features / revolution_boolean.py
1 """RevolutionCut and RevolutionFuse Interface
2 Author: Sergey Pokhodenko
3 Copyright (C) 2014-20xx CEA/DEN, EDF R&D
4 """
5
6 from .roots import CompositeBoolean
7
8
9 def addRevolutionCut(part, *args):
10     """Add an RevolutionCut feature to the Part and return RevolutionBoolean.
11
12     Pass all args to RevolutionCut __init__ function.
13     """
14     assert(args)
15     feature = part.addFeature("RevolutionCut")
16     return RevolutionBoolean(feature, *args)
17
18 def addRevolutionFuse(part, *args):
19     """Add an RevolutionFuse feature to the Part and return RevolutionBoolean.
20
21     Pass all args to RevolutionFuse __init__ function.
22     """
23     assert(args)
24     feature = part.addFeature("RevolutionFuse")
25     return RevolutionBoolean(feature, *args)
26
27
28 class RevolutionBoolean(CompositeBoolean):
29
30     def __init__(self, feature, *args):
31         CompositeBoolean.__init__(self, feature, *args)
32
33         self._axis_object = self._feature.data().selection("axis_object")
34         self._CreationMethod = self._feature.string("CreationMethod")
35         self._to_angle = self._feature.data().real("to_angle")
36         self._from_angle = self._feature.data().real("from_angle")
37         self._to_object = self._feature.data().selection("to_object")
38         self._to_offset = self._feature.data().real("to_offset")
39         self._from_object = self._feature.data().selection("from_object")
40         self._from_offset = self._feature.data().real("from_offset")
41
42         if not args:
43             return
44
45         self.setAxisObject(args[0])
46
47         if len(args) == 4:
48             self.setPlanesAndOffsets(*args[1:])
49         elif len(args) == 2:
50             self.setAngles(*args[1:])
51         pass
52
53     def __clear(self):
54         self._CreationMethod.setValue("ByAngles")
55         self._fill_attribute(self._to_angle, 0)
56         self._fill_attribute(self._from_angle, 0)
57         self._fill_attribute(self._to_object, None)
58         self._fill_attribute(self._to_offset, 0)
59         self._fill_attribute(self._from_object, None)
60         self._fill_attribute(self._from_offset, 0)
61         pass
62
63     def setAxisObject(self, axis_object):
64         """Modify axis_object attribute of the feature.
65
66         See __init__.
67         """
68         self._fill_attribute(self._axis_object, axis_object)
69         pass
70
71     def setAngles(self, to_angle, from_angle):
72         """Modify the to_angle, from_angle attributes of the feature.
73
74         See __init__.
75         """
76         self.__clear()
77         self._CreationMethod.setValue("ByAngles")
78         self._fill_attribute(self._to_angle, to_angle)
79         self._fill_attribute(self._from_angle, from_angle)
80         pass
81
82     def setPlanesAndOffsets(self, to_object, to_offset,
83                             from_object, from_offset):
84         """Modify planes and offsets attributes of the feature.
85
86         See __init__.
87         """
88         self.__clear()
89         self._CreationMethod.setValue("ByPlanesAndOffsets")
90         self._fill_attribute(self._to_object, to_object)
91         self._fill_attribute(self._to_offset, to_offset)
92         self._fill_attribute(self._from_object, from_object)
93         self._fill_attribute(self._from_offset, from_offset)
94         pass
95