Salome HOME
Merge remote branch 'origin/V7_dev'
[modules/paravis.git] / test / VisuPrs / 3D_viewer / B2.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/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
30 # Directory for saving snapshots
31 picturedir = get_picture_dir("3D_viewer/B2")
32
33 # Add path separator to the end of picture path if necessery
34 if not picturedir.endswith(os.sep):
35     picturedir += os.sep
36
37 # Get view
38 my_view = GetRenderView()
39 reset_view(my_view)
40 Render(my_view)
41
42 # Split
43 a_view_r = CreateRenderView()
44 Delete(a_view_r)
45
46 # Split
47 a_view_l = CreateRenderView()
48 Delete(a_view_l)
49
50 # Split
51 a_view_t = CreateRenderView()
52 Delete(a_view_t)
53
54 # Split
55 a_view_b = CreateRenderView()
56 reset_view(a_view_b)
57 Render(a_view_b)