Re: [Paraview] Hiding all pipeline objects

2017-08-08 Thread Utkarsh Ayachit
With 5.1.2, try this: >>> view = GetActiveView() >>> sources = GetSources().values() >>> for aSource in sources: ... Hide(aSource, view) Utkarsh On Tue, Aug 8, 2017 at 1:05 PM, Amelia Launspach wrote: > Using paraview 5.1.2, thats a bummer > > On Tue, Aug

Re: [Paraview] Hiding all pipeline objects

2017-08-08 Thread Amelia Launspach
Using paraview 5.1.2, thats a bummer On Tue, Aug 8, 2017 at 12:03 PM, Utkarsh Ayachit < utkarsh.ayac...@kitware.com> wrote: > What version of ParaView are you using? `simple.HideAll` has been > supported since 5.2. > > On Tue, Aug 8, 2017 at 12:39 PM, Amelia Launspach >

Re: [Paraview] Hiding all pipeline objects

2017-08-08 Thread Utkarsh Ayachit
What version of ParaView are you using? `simple.HideAll` has been supported since 5.2. On Tue, Aug 8, 2017 at 12:39 PM, Amelia Launspach wrote: > Hi everyone, > > I'm trying to hide all pipeline objects on my view. My paraview.simple > does not have a "HideAll" so I'm

[Paraview] Hiding all pipeline objects

2017-08-08 Thread Amelia Launspach
Hi everyone, I'm trying to hide all pipeline objects on my view. My paraview.simple does not have a "HideAll" so I'm not sure how to do this. The following methods have not worked for me: def HideAll(view=None): """Hide all pipeline sources in the given view. If view is not specified, active