]> SALOME platform Git repositories - modules/paravis.git/blob - test/VisuPrs/SWIG_scripts/B9.py
Salome HOME
Normalize installation dir of all plugins
[modules/paravis.git] / test / VisuPrs / SWIG_scripts / B9.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/B9 case
21
22 from paravistest import datadir
23 from presentations import EntityType, ScalarMapOnField, CutPlanesOnField, delete_pv_object
24 import pvsimple
25
26 # Get view
27 view = pvsimple.GetRenderView()
28 if view:
29     delete_pv_object(view)
30
31 # Import MED file
32 med_file = datadir + "pointe.med"
33 field_name = "fieldnodedouble"
34 entity = EntityType.NODE
35 timestamp = 1
36
37 pvsimple.OpenDataFile(med_file)
38 med_reader = pvsimple.GetActiveSource()
39
40 # Create presentations
41 view1 = pvsimple.CreateRenderView()
42 scalarmap = ScalarMapOnField(med_reader, entity, field_name, timestamp)
43 pvsimple.ResetCamera(view1)
44
45 view2 = pvsimple.CreateRenderView()
46 cutlines = CutPlanesOnField(med_reader, entity, field_name, timestamp)
47 pvsimple.ResetCamera(view2)
48
49 # Delete
50 source = cutlines.Input
51 delete_pv_object(source)
52 delete_pv_object(med_reader)
53
54 # Render views
55 pvsimple.Render(view1)
56 pvsimple.Render(view2)