Salome HOME
dd9c9bf78d917498c7394cfe3b9418f2776eaeaf
[modules/visu.git] / src / VISU_SWIG / VISU_Example_03.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 #  This library is free software; you can redistribute it and/or
8 #  modify it under the terms of the GNU Lesser General Public
9 #  License as published by the Free Software Foundation; either
10 #  version 2.1 of the License.
11 #
12 #  This library is distributed in the hope that it will be useful,
13 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 #  Lesser General Public License for more details.
16 #
17 #  You should have received a copy of the GNU Lesser General Public
18 #  License along with this library; if not, write to the Free Software
19 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23 # Animation of "vitesse" field, stored in file TimeStamps.med
24 # This script is equivalent to non-regression test script 003/A5
25 #
26 import salome
27 import visu_gui
28 import SALOMEDS
29 import VISU
30 import os
31 import time
32
33 medFile = os.getenv("DATA_DIR") + "/MedFiles/TimeStamps.med"
34
35 print 'Importing "TimeStamps.med"................',
36 myVisu = visu_gui.myVisu
37 myVisu.SetCurrentStudy(salome.myStudy)
38 myResult = myVisu.ImportFile(medFile)
39 if myResult is None : print "Error"
40 else : print "OK"
41
42 print "Creating Cut Lines........................",
43 medMesh = 'dom'
44 medField = "vitesse"
45 aCutLines = myVisu.CutLinesOnField(myResult,'dom',VISU.NODE,medField,1)
46 aCutLines.SetOrientation(VISU.CutPlanes.XY, 0, 0)
47 aCutLines.SetOrientation2(VISU.CutPlanes.ZX, 0, 0)
48 aCutLines.SetNbLines(20)
49 if aCutLines is None : print "Error"
50 else : print "OK"
51
52 print "Creating a Viewer.........................",
53 myViewManager = myVisu.GetViewManager();
54 myView = myViewManager.Create3DView();
55 if myView is None : print "Error"
56 else : print "OK"
57 myView.Display(aCutLines);
58 myView.FitAll();
59
60 aCutLinesSObj = salome.myStudy.FindObjectIOR(aCutLines.GetID())
61 aFather = aCutLinesSObj.GetFather().GetFather();
62
63 print "Creating an Animation.....................",
64 myAnim = myVisu.CreateAnimation(myView); 
65 if myAnim is None : print "Error"
66 else : print "OK"
67
68 print "Animation.................................",
69 myAnim.addField(aFather);
70 myAnim.generatePresentations(0);
71 myAnim.generateFrames();
72 myAnim.setSpeed(33)
73 myAnim.startAnimation();
74
75 myView.FitAll()
76 while 1:
77     time.sleep(1)
78     if not myAnim.isRunning():
79         myAnim.stopAnimation()
80         break
81
82 print "OK"