Salome HOME
Merge branch 'origin/abn/openfile_fix'
[modules/paravis.git] / test / VisuPrs / 3D_viewer / B2.py
1 # Copyright (C) 2010-2013  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.
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/3D_viewer/B2 case
21 # Create 3D Viewer and test set view properties for CutPlanes presentation
22 # Author: POLYANSKIKH VERA
23 import sys
24 import time
25
26 from paravistest import *
27 from presentations import *
28 from pvsimple import *
29 import paravis
30
31
32 # Directory for saving snapshots
33 picturedir = get_picture_dir("3D_viewer/B2")
34
35 # Add path separator to the end of picture path if necessery
36 if not picturedir.endswith(os.sep):
37     picturedir += os.sep
38
39 #import file
40 myParavis = paravis.myParavis
41
42 # Get view
43 my_view = GetRenderView()
44 reset_view(my_view)
45 Render(my_view)
46
47 # Split
48 a_view_r = CreateRenderView()
49 Delete(a_view_r)
50
51 # Split
52 a_view_l = CreateRenderView()
53 Delete(a_view_l)
54
55 # Split
56 a_view_t = CreateRenderView()
57 Delete(a_view_t)
58
59 # Split
60 a_view_b = CreateRenderView()
61 reset_view(a_view_b)
62 Render(a_view_b)