[Paraview] Python Proogrammable Filter - Get Proxy

2011-11-14 Thread Markus Fuger
Hello, I do like to program my own plugin based on a Python Programmable filter (PPF). For some feature (I want to get the file directory of the files from the input of the very first proxy in the pipeline) I need the proxy object of the PPF. If I once would have this object I could then loop

Re: [Paraview] Python Proogrammable Filter - Get Proxy

2011-11-14 Thread pat marion
Hi Markus, What you're trying to do is discouraged, you shouldn't attempt to access proxies from within the programmable filter. If you were running paraview in a client-server setup, it would not work because the filter and its proxy would exist on different processes. Anyway, here's some code