Salome HOME
Update ParaVis non-regression test base in the following ways:
[modules/paravis.git] / test / VisuPrs / bugs / A1.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/bugs/A1 case
21
22 import sys
23 import os
24 import time
25 from paravistest import datadir, pictureext, get_picture_dir
26 from presentations import *
27 import pvsimple
28
29 picturedir = get_picture_dir("bugs/A1")
30
31 med_file_path = datadir + "fra1.med"
32 pic_path = os.path.join(picturedir, "A1." + pictureext)
33
34 # 1. Import MED file
35 pvsimple.OpenDataFile(med_file_path)
36 med_reader = pvsimple.GetActiveSource()
37
38 # 2. Create mesh
39 mesh = MeshOnEntity(med_reader, "LE VOLUME", EntityType.CELL)
40 mesh.Representation = 'Surface With Edges'
41
42 # 3. Display mesh and make snapshot
43 view = pvsimple.GetRenderView()
44
45 display_only(mesh, view)
46 reset_view(view)
47
48 view.CameraViewUp = [0,1,0]
49 view.CameraPosition = [0, 42, -200]
50 view.CameraFocalPoint = [25, 0, 5]
51 view.CameraParallelScale = 1
52
53 view.ResetCamera()
54
55 pvsimple.Render(view)
56
57 print "Picure file name is " + pic_path
58 pvs.WriteImage(pic_path, view=view, Magnification=1)
59 time.sleep(1)