Salome HOME
Porting ParaVis presentations to ParaView-5.0.0
[modules/paravis.git] / test / demo4.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
21 if not ('servermanager' in dir()):
22   from pvsimple import *
23
24 import os, inspect
25
26 def demo4(fname, animpth):
27     """This method demonstrates the AnimateReader for creating animations."""
28
29     reader = ExodusIIReader(FileName=fname)
30     v = CreateRenderView()
31     repr = Show(reader, view=v)
32     v.StillRender()
33     v.ResetCamera()
34     ##v.CameraPosition = [0., -30, 0]
35     ##v.CameraFocalPoint = [6.2, 9.5, -0.5]
36     ##v.CameraViewUp = [-0.64, 0.2, -0.75]
37     ##v.CameraViewAngle = [30]
38     v.StillRender()
39     c = v.GetActiveCamera()
40     c.Elevation(95)
41   
42     r = AnimateReader(reader, view=v, filename=(animpth + "can.png"))
43
44
45 scriptdir = inspect.getframeinfo(inspect.currentframe())[0]
46 testdir = os.path.dirname( os.path.abspath(scriptdir) )
47 pvdata = os.getenv("SAMPLES_SRC_DIR")
48
49 if __name__ == "__main__":
50     demo4(fname=pvdata+"/Data/can.ex2", animpth=testdir+"/VisuPrs/Animation/")