X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=test%2FVisuPrs%2F3D_viewer%2FA2.py;h=d22d4e8defe6278fe329c4bbdafc1caecd8569d0;hb=bcdf63794e5d72ec2bd93925b0e5d161416be464;hp=8611392cd4173effa0b5bebe2b8f80683e2fde15;hpb=c7c9039d845fb2a5e2eb391139af089b4bed26a5;p=modules%2Fparavis.git diff --git a/test/VisuPrs/3D_viewer/A2.py b/test/VisuPrs/3D_viewer/A2.py index 8611392c..d22d4e8d 100644 --- a/test/VisuPrs/3D_viewer/A2.py +++ b/test/VisuPrs/3D_viewer/A2.py @@ -1,9 +1,9 @@ -# Copyright (C) 2010-2013 CEA/DEN, EDF R&D +# Copyright (C) 2010-2016 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either -# version 2.1 of the License. +# version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -24,19 +24,15 @@ from paravistest import * from presentations import * from pvsimple import * import sys -import paravis import time # Directory for saving snapshots -picturedir = get_picture_dir(sys.argv[1], "3D_viewer/A2") +picturedir = get_picture_dir("3D_viewer/A2") # Add path separator to the end of picture path if necessery if not picturedir.endswith(os.sep): picturedir += os.sep -#import file -my_paravis = paravis.myParavis - # Get view my_view = GetRenderView() reset_view(my_view) @@ -47,7 +43,7 @@ print " --------------------------------- " print "file ", file_name print " --------------------------------- " -my_paravis.ImportFile(file_name) +OpenDataFile(file_name) proxy = GetActiveSource() if proxy is None: raise RuntimeError("Error: can't import file.") @@ -57,12 +53,12 @@ else: represents = [RepresentationType.POINTS, RepresentationType.WIREFRAME,\ RepresentationType.SURFACE, RepresentationType.VOLUME] shrinks = [0, 1] -shadings = [0, 1] +shadings = ["Flat", "Gouraud"] opacities = [1.0, 0.5, 0.0] linewidths = [1.0, 3.0, 10.0] compare_prec = 0.00001 -field_name = 'vectoriel_field' +field_name = 'vectoriel field' print "\nCreating Vectors.......", vectors = VectorsOnField(proxy, EntityType.CELL, field_name, 1, @@ -87,7 +83,7 @@ for reprCode in represents: call_and_check(vectors, "Representation", repr, 1) for sha in shadings: - call_and_check(vectors, "Shading", sha, 1) + call_and_check(vectors, "Interpolation", sha, 1) setShaded(my_view, sha) Render(my_view) time.sleep(1)