Re: [Paraview] problem in displaying filters affects

2012-04-20 Thread Roba Binyahib
That really helped Many thanks =D On Mon, Apr 16, 2012 at 4:12 PM, Sebastien Jourdain < sebastien.jourd...@kitware.com> wrote: > Try that, > > from paraview.simple import * > > reader = OpenDataFile( "/home/.../disk_out_ref.ex2" ) > Show() > Render() > > clip = Clip(reader) > clip.ClipType.N

Re: [Paraview] problem in displaying filters affects

2012-04-16 Thread Sebastien Jourdain
Try that, from paraview.simple import * reader = OpenDataFile( "/home/.../disk_out_ref.ex2" ) Show() Render() clip = Clip(reader) clip.ClipType.Normal = [.5,.5,0] Show(clip) Render() Hide(reader) Render() That should do what you script was doing. But at the end I make sure that I hide the

[Paraview] problem in displaying filters affects

2012-04-16 Thread Roba Binyahib
Hi everyone I'm having a problem with applying filters using python and paraview I can load the data file and change the colors but when I apply filters I can not see any changes I'm using paraview version 3.14.0 and this is an example of the code I'm trying to run >>> from paraview import ser