Salome HOME
Further porting: ImportFile is now replaced by OpenDataFile
[modules/paravis.git] / test / VisuPrs / 3D_viewer / A4.py
index b013c280e5e05dbc03cea12a4f519467072040f1..034cbd8d77ceac8dc04160b4dd18c4dd9cd32bfa 100644 (file)
@@ -24,7 +24,7 @@ from paravistest import *
 from presentations import *
 from pvsimple import *
 import sys
-import paravis
+import pvserver as paravis
 import time
 
 # Directory for saving snapshots
@@ -46,7 +46,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,7 +56,7 @@ 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
@@ -86,7 +86,7 @@ for reprCode in represents:
 
     for sha in shadings:
         setShaded(my_view, sha)
-        call_and_check(iso_surf, "Shading", sha, 1)
+        call_and_check(iso_surf, "Interpolation", sha, 1)
         Render(my_view)
 
         for opa in opacities: