[Paraview] Utilisation of plugin ParaView in ParaViewWeb

2012-06-14 Thread Alex
Hi everybody,     I'm really new in ParaView. I have a question about utilisation of ParaView's plugin in ParaViewWeb: - My plugin has been imported to ParaView and work with ParaView. I did a simple image threshold filter (1 input and 1 output,derived de SimpleToSimpleImageFilter) and it works

Re: [Paraview] Utilisation of plugin ParaView in ParaViewWeb

2012-06-14 Thread Sebastien Jourdain
Hi Alex, there is two ways to achieve your goal. Solution 1: Inside the pw-config.properties file, instead of calling the PWServer executable right away, you can call a shell script which will call PWServer underneath with some extra arguments such as an initialization python script

Re: [Paraview] Getting camera/view data in c++ filter

2012-06-14 Thread Utkarsh Ayachit
Alex, What you are trying to do is beyond what a filter can be expected to do in ParaView. What you'll need is a representation that uses the filter internally to process the data right before it is rendered. Look at vtkAMRVolumeRepresentation in git-master to see how this can be done. Utkarsh

[Paraview] Manually writing time based data to (.vtu)

2012-06-14 Thread Dray, Colan
Dear all, I am trying to manually create a VTK XML UnstructuredGrid that contains time varying data for each point. What would help me the most is an example file that contains this sort of information; it does not need to be in the UnstructuredGrid format. If someone could point me to

Re: [Paraview] Manually writing time based data to (.vtu)

2012-06-14 Thread William Oquendo
Hi, Unfortunately what I do in your case is what you prefer not to do: I write a different file for each time step and then use a .pvd paraview file to set the time step for the corresponding filename. This is easy. Then I load the pvd into paraview and it associates the time step with each data

[Paraview] Problem about Generate Ids filter

2012-06-14 Thread Magician
Hi all, Today I tried Generate Ids filter. When I applied it, Points' and Cells' IDs are generated, but first values of original source are disappeared. Is it a bug? Can I generate IDs not to overwrite original values? Magician ___ Powered by

[Paraview] Animating the 3D raw binary data in sequence

2012-06-14 Thread Rakesh Dhote
Hi, I am looking for a help in animating the 3D raw binary data files. The files are named as u1.0, u1.1, u1.2, ... and the file details are provided below. To animate, I tried to use the fileprefix as 'u1' and file pattern as '%s.%d', but found that it does not work. Could you please share your

[Paraview] some ui issues

2012-06-14 Thread Burlen Loring
I attempted to use my plugin with the master branch today and ran into some UI issues. I found it confusing that none of the properties were displayed until I hit the advanced button. Is there a way to make all the properties show up by default? also, properties that were hidden via the

Re: [Paraview] Getting camera/view data in c++ filter

2012-06-14 Thread Alex Rattner
Hi Jean-Noel, Thank you very much for the assistance. I was able to retrieve the camera data and use it in my filter. For everyone else here is the working block of code to get camera data directly. pqView *view = 0; pqActiveObjects* tempInstance = ( pqActiveObjects::instance() ); view =

Re: [Paraview] Animating the 3D raw binary data in sequence

2012-06-14 Thread David E DeMarle
See: Reading a time varying Raw file into Paraview On: http://paraview.org/Wiki/Data_formats David E DeMarle Kitware, Inc. RD Engineer 21 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-881-4909 On Thu, Jun 14, 2012 at 1:02 PM, Rakesh Dhote rakesh.dh...@gmail.com wrote: Hi, I am