Salome HOME
Merge branch V7_3_1_BR
[modules/paravis.git] / test / VisuPrs / SWIG_scripts / A3.py
1 # Copyright (C) 2010-2014  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 # This case corresponds to: /visu/SWIG_scripts/A3 case
21
22 from paravistest import datadir
23 from presentations import *
24 import paravis
25 import pvsimple
26
27
28 my_paravis = paravis.myParavis
29
30 print 'Importing "TimeStamps.med"...............',
31 file_path = datadir + "TimeStamps.med"
32 my_paravis.ImportFile(file_path)
33 med_reader = pvsimple.GetActiveSource()
34
35 if med_reader is None:
36     print "FAILED"
37 else:
38     print "OK"
39
40 print "Creating Cut Lines........................",
41 med_field = "vitesse"
42 cutlines = CutLinesOnField(med_reader, EntityType.NODE, med_field, 1,
43                            nb_lines=20,
44                            orientation1=Orientation.XY,
45                            orientation2=Orientation.ZX)
46 if cutlines is None:
47     print "FAILED"
48 else:
49     print "OK"
50
51 print "Getting a viewer.........................",
52 view = pvsimple.GetRenderView()
53 if view is None:
54     print "FAILED"
55 else:
56     reset_view(view)
57     print "OK"
58
59 cutlines.Visibility = 1
60 view.ResetCamera()
61 pvsimple.Render()
62
63 print "Creating an Animation.....................",
64 scalarmap = ScalarMapOnField(med_reader, EntityType.NODE, med_field, 2)
65
66 scene = pvsimple.AnimateReader(med_reader, view)
67 if scene is None:
68     print "FAILED"
69 else:
70     print "OK"