Salome HOME
Set dev version marker to 1.
[modules/paravis.git] / test / demo6.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
21 if not ('servermanager' in dir()):
22   from pvsimple import *
23
24 import os, inspect
25
26 def demo6(fname, impth):
27     """This method demonstrates the Clip filter."""
28
29     reader = ExodusIIReader(FileName=fname)
30     v = CreateRenderView()
31     repr = Show(reader, view=v)
32     Render()
33     v.StillRender()
34     v.ResetCamera()
35     clipFilter = Clip(reader)
36     Hide(reader)
37     Show(clipFilter)
38     Render()
39
40     #get camera
41     camera = GetActiveCamera()
42     camera.GetPosition()
43
44     #figure out where you are
45     camera.SetPosition(4.156,4.0,-36.29)
46     camera.Elevation(30)
47     camera.SetPosition(4.15603, 30, -35)
48     Render()
49     clipFilter.UseValueAsOffset = 1
50     clipFilter.Value = 5
51     Render()
52     WriteImage(filename = (impth + "clipFilter_1.png"), view=v, Magnification=2)
53
54     clipFilter.ClipType.Normal
55     clipFilter.ClipType.Origin
56
57     #reset the offset value of the clip to 0
58     clipFilter.Value = 0
59     clipFilter.ClipType.Normal = [0, 0, 1]
60     Render()
61     WriteImage(filename = (impth + "clipFilter_2.png"), view=v, Magnification=2)
62
63     clipFilter.Value = -3
64     Render()
65     WriteImage(filename = (impth + "clipFilter_3.png"), view=v, Magnification=2)
66
67     clipFilter.InsideOut = 1
68     Render()
69     WriteImage(filename = (impth + "clipFilter_4.png"), view=v, Magnification=2)
70
71
72
73 scriptdir = inspect.getframeinfo(inspect.currentframe())[0]
74 testdir = os.path.dirname( os.path.abspath(scriptdir) )
75 pvdata = os.getenv("SAMPLES_SRC_DIR")
76
77 if __name__ == "__main__":
78     demo6(fname=pvdata+"/Data/can.ex2", impth=testdir+"/Pic/")