[Paraview] Changing the label in the pipeline browser through python scripts

2010-06-18 Thread Jérôme
Hi, I wonder how I can change the label of a filter in the pipeline browser through python commands. Thanks a lot! Jerome ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html

Re: [Paraview] Changing the label in the pipeline browser through python scripts

2010-06-18 Thread Utkarsh Ayachit
You can use RenameSource. from paraview.simple import * help(RenameSource) Utkarsh On Fri, Jun 18, 2010 at 4:22 AM, Jérôme jerome.ve...@gmail.com wrote: Hi, I wonder how I can change the label of a filter in the pipeline browser through python commands. Thanks a lot! Jerome

Re: [Paraview] Changing the label in the pipeline browser through python scripts

2010-06-18 Thread Jérôme
Thanks Utkarsh! I just found the file Utilities/VTKPythonWrapping/paraview/simple.py, in which this function is defined. Is there a more convenient documentation (such as the nightly doxygen) somewhere? Jerome 2010/6/18 Utkarsh Ayachit utkarsh.ayac...@kitware.com: You can use RenameSource.