Salome HOME
Copyright update: 2016
[modules/paravis.git] / test / VisuPrs / 3D_viewer / A8.py
index 8a3e569e97d693b4c057f7d727aee48593ba9031..0aa0e72b68768ee40b6f0f57ba4110aa7aaa2d2b 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2010-2014  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
@@ -24,7 +24,6 @@ from paravistest import *
 from presentations import *
 from pvsimple import *
 import sys
-import paravis
 import time
 
 # Directory for saving snapshots
@@ -33,8 +32,6 @@ picturedir = get_picture_dir("3D_viewer/A8")
 # 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()
@@ -46,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.")
@@ -56,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 = 'scalar_field'
+field_name = 'scalar field'
 
 print "\nCreating cut lines.......",
 cut_lines = CutLinesOnField(proxy, EntityType.CELL, field_name, 1,
@@ -90,7 +87,7 @@ for reprCode in represents:
 
         for sha in shadings:
             setShaded(my_view, sha)
-            call_and_check(cut_lines, "Shading", sha, 1)
+            call_and_check(cut_lines, "Interpolation", sha, 1)
             Render(my_view)
 
             for opa in opacities: