Salome HOME
Renamed paravis into pvserver in tests.
[modules/paravis.git] / test / VisuPrs / bugs / A1.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/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 pvserver as paravis
28 import pvsimple
29
30 my_paravis = paravis.myParavis
31 os.environ["PARAVIS_TEST_PICS"] = sys.argv[1]
32 picturedir = get_picture_dir("bugs/A1")
33
34 med_file_path = datadir + "fra1.med"
35 pic_path = os.path.join(picturedir, "A1." + pictureext)
36
37 # 1. Import MED file
38 my_paravis.ImportFile(med_file_path)
39 med_reader = pvsimple.GetActiveSource()
40
41 # 2. Create mesh
42 mesh = MeshOnEntity(med_reader, "LE_VOLUME", EntityType.CELL)
43 mesh.Representation = 'Surface With Edges'
44
45 # 3. Display mesh and make snapshot
46 view = pvsimple.GetRenderView()
47
48 display_only(mesh, view)
49 reset_view(view)
50
51 view.CameraViewUp = [0,1,0]
52 view.CameraPosition = [0, 42, -200]
53 view.CameraFocalPoint = [25, 0, 5]
54 view.CameraParallelScale = 1
55
56 view.ResetCamera()
57
58 pvsimple.Render(view)
59
60 print "Picure file name is " + pic_path
61 pvs.WriteImage(pic_path, view=view, Magnification=1)
62 time.sleep(1)