[Paraview] python shell move data from client to server

2011-06-29 Thread Florian Beck
Hi, I want to create a DataObjectGenerator with an unstructered Grid. And when later I want to modify the grid. My try looks as follows: # create the DataObjectGenerator DataObjectGenerator1 = DataObjectGenerator() DataObjectGenerator1.Program ='UG1' # read some coord from over objects ...

Re: [Paraview] python shell move data from client to server

2011-06-29 Thread Utkarsh Ayachit
Nope, moving data from client to server in the way you describe is not supported in ParaView. For what you are trying to do, you should really implement a filter (with multiple inputs, if needed) to do the data-manipulation on the server-side itself. Utkarsh On Wed, Jun 29, 2011 at 5:23 AM,

Re: [Paraview] python shell move data from client to server

2011-06-29 Thread pat marion
If you use the python programmable filter, you can create it set the filter routine (python code) via a python macro on the GUI. If the data you are trying to manipulate on the GUI is small, you could encode it in a string and set it in the body of the python programmable filter. Pat On Wed,