Salome HOME
enable make test
[modules/paravis.git] / test / VisuPrs / SWIG_scripts / B9.py
1 # Copyright (C) 2010-2015  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/B9 case
21
22 from paravistest import datadir
23 from presentations import EntityType, ScalarMapOnField, CutPlanesOnField
24 import pvsimple
25
26 # Get view
27 view1 = pvsimple.GetRenderView()
28
29 # Import MED file
30 med_file = datadir + "pointe.med"
31 field_name = "fieldnodedouble"
32 entity = EntityType.NODE
33 timestamp = 1
34
35 pvsimple.OpenDataFile(med_file)
36 med_reader = pvsimple.GetActiveSource()
37
38 # Create presentations
39 scalarmap = ScalarMapOnField(med_reader, entity, field_name, timestamp)
40 pvsimple.ResetCamera(view1)
41
42 view2 = pvsimple.CreateRenderView()
43 cutlines = CutPlanesOnField(med_reader, entity, field_name, timestamp)
44 pvsimple.ResetCamera(view2)
45
46 # Delete
47 source = cutlines.Input
48 pvsimple.Delete(source)
49 pvsimple.Delete(med_reader)
50
51 # Clear views from scalar bar and update views
52 for rview in pvsimple.GetRenderViews():
53     rview.Representations.Clear()
54     pvsimple.Render(rview)