Salome HOME
Merge Python 3 porting.
[modules/paravis.git] / test / VisuPrs / SWIG_scripts / A3.py
1 # Copyright (C) 2010-2016  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 pvsimple
25
26 print('Importing "TimeStamps.med"...............', end=' ')
27 file_path = datadir + "TimeStamps.med"
28 pvsimple.OpenDataFile(file_path)
29 med_reader = pvsimple.GetActiveSource()
30
31 if med_reader is None:
32     print("FAILED")
33 else:
34     print("OK")
35
36 print("Creating Cut Lines........................", end=' ')
37 med_field = "vitesse"
38 cutlines = CutLinesOnField(med_reader, EntityType.NODE, med_field, 1,
39                            nb_lines=20,
40                            orientation1=Orientation.XY,
41                            orientation2=Orientation.ZX)
42 if cutlines is None:
43     print("FAILED")
44 else:
45     print("OK")
46
47 print("Getting a viewer.........................", end=' ')
48 view = pvsimple.GetRenderView()
49 if view is None:
50     print("FAILED")
51 else:
52     reset_view(view)
53     print("OK")
54
55 cutlines.Visibility = 1
56 view.ResetCamera()
57 pvsimple.Render()
58
59 print("Creating an Animation.....................", end=' ')
60 scalarmap = ScalarMapOnField(med_reader, EntityType.NODE, med_field, 2)
61
62 scene = pvsimple.AnimateReader(med_reader, view)
63 if scene is None:
64     print("FAILED")
65 else:
66     print("OK")