]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Add feature translation without tests.
authorspo <sergey.pokhodenko@opencascade.com>
Tue, 27 Oct 2015 13:55:02 +0000 (16:55 +0300)
committerspo <sergey.pokhodenko@opencascade.com>
Tue, 27 Oct 2015 14:01:44 +0000 (17:01 +0300)
src/PythonAPI/model/features/__init__.py
src/PythonAPI/model/features/translation.py [new file with mode: 0644]

index 7b2d341a9ee04cd317b4fc99a971108032796b59..0a937e0633a8b75a9a8690d9345c611ea273d40e 100644 (file)
@@ -17,3 +17,4 @@ from revolution_sketch import addRevolutionSketch
 
 from placement import addPlacement
 from rotation import addRotation
+from translation import addTranslation
diff --git a/src/PythonAPI/model/features/translation.py b/src/PythonAPI/model/features/translation.py
new file mode 100644 (file)
index 0000000..d36a722
--- /dev/null
@@ -0,0 +1,57 @@
+"""Translation Interface
+Author: Sergey Pokhodenko
+Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+"""
+
+from model.roots import Interface
+
+
+def addTranslation(part, *args):
+    """Add an Translation feature to the Part and return Translation.
+
+    Pass all args to Translation __init__ function.
+    """
+    assert(args)
+    feature = part.addFeature("Translation")
+    return Translation(feature, *args)
+
+
+class Translation(Interface):
+
+    def __init__(self, feature, *args):
+        Interface.__init__(self, feature)
+        assert(self._feature.getKind() == "Translation")
+
+        self._main_objects = self._feature.data().selectionList("main_objects")
+        self._axis_object = self._feature.data().selection("axis_object")
+        self._distance = self._feature.data().real("distance")
+
+        assert(len(args) == 3)
+        self.setMainObjects(args[0])
+        self.setAxisObject(args[1])
+        self.setDistance(args[2])
+        pass
+
+    def setMainObjects(self, main_objects):
+        """Modify main_objects attribute of the feature.
+
+        See __init__.
+        """
+        self._fill_attribute(self._main_objects, main_objects)
+        pass
+
+    def setAxisObject(self, axis_object):
+        """Modify axis_object attribute of the feature.
+
+        See __init__.
+        """
+        self._fill_attribute(self._axis_object, axis_object)
+        pass
+
+    def setDistance(self, distance):
+        """Modify distance attribute of the feature.
+
+        See __init__.
+        """
+        self._fill_attribute(self._distance, distance)
+        pass