From: akl Date: Thu, 20 Mar 2014 12:23:45 +0000 (+0400) Subject: Using 'AllArrays' instead of 'CellArrays' and 'PointArrays'. X-Git-Tag: V7_4_0a1~2^2~1^2~3 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=93df79bfef11e9baca0b650b57a0e061d9fb2c23;p=modules%2Fparavis.git Using 'AllArrays' instead of 'CellArrays' and 'PointArrays'. --- diff --git a/test/VisuPrs/Animation/B2.py b/test/VisuPrs/Animation/B2.py index 13544de8..19d52285 100644 --- a/test/VisuPrs/Animation/B2.py +++ b/test/VisuPrs/Animation/B2.py @@ -64,9 +64,10 @@ if not picturedir.endswith(os.sep): picturedir += os.sep # Select only the current field: -aProxy.PointArrays.DeselectAll() -aProxy.CellArrays.DeselectAll() -aProxy.CellArrays = ['pression'] +aProxy.AllArrays = [] +aProxy.UpdatePipeline() +aProxy.AllArrays = ['TS0/dom/ComSup0/pression@@][@@P0'] +aProxy.UpdatePipeline() # Animation creation and saving into set of files into picturedir scene = AnimateReader(aProxy,aView,picturedir+"B2_dom."+my_format) diff --git a/test/VisuPrs/Animation/C0.py b/test/VisuPrs/Animation/C0.py index 08319fd8..9672ccbe 100644 --- a/test/VisuPrs/Animation/C0.py +++ b/test/VisuPrs/Animation/C0.py @@ -64,9 +64,10 @@ if not picturedir.endswith(os.sep): picturedir += os.sep # Select only the current field: -aProxy.CellArrays.DeselectAll() -aProxy.PointArrays.DeselectAll() -aProxy.PointArrays = ['vitesse'] +aProxy.AllArrays = [] +aProxy.UpdatePipeline() +aProxy.AllArrays = ['TS0/dom/ComSup0/vitesse@@][@@P1'] +aProxy.UpdatePipeline() # Animation creation and saving into set of files into picturedir scene = AnimateReader(aProxy,aView,picturedir+"C0_dom."+my_format)