[Paraview] VRPN with Paraview 3.10

2011-03-25 Thread Christian Wohlschlager
** Reply Requested When Convenient ** Dear Paraviewer's ! I just downloaded Paraview 3.10 it seems to solve exactly the problem with visualisation in the cave, just one (maybe more) Question How to i get the vrpn plugin into the new binary version or do i have to make everything from the

Re: [Paraview] Applying filters in sample app

2011-03-25 Thread owen.arnold
Hi Utkarsh, I'd also like to see a coded example of this in action. If you have something, could you post it to the list. Many thanks, Owen. -Original Message- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Reuter, Michael A. Sent: 21 March

Re: [Paraview] Empty Object Properties - Custom Reader Plugin

2011-03-25 Thread Xunlei Wu
Hello, I still cannot figure out why I had such problem. Would you please help? Thanks a lot. Best, xunlei From: Xunlei Wu Sent: Monday, March 21, 2011 8:22 PM To: paraview@paraview.org Subject: Empty Object Properties - Custom Reader Plugin Hello, I am writing a reader plugin for ParaView

[Paraview] Providing block names within .vtm files

2011-03-25 Thread Adriano Gagliardi
Is there specific syntax required to set the name of each block within a .vtm file? I've tried using DataSet name=... , but it appears to be ignored as the blocks are still named generically as Data Set 0, Data Set 1, etc. I've done a fair bit of searching but failed to find any reference to

Re: [Paraview] Empty Object Properties - Custom Reader Plugin

2011-03-25 Thread Karl König
Xunlei, There is no auto-generation of GUI elements for the properties tab of a reader. Your reader has to populate the tab. Are you looking for something like Cell/Point Array Status to pop up in the properties tab? Like the VTU-XML Reader and many others offer? Such that you can select the

Re: [Paraview] Empty Object Properties - Custom Reader Plugin

2011-03-25 Thread Xunlei Wu
Hi Karl, Exactly as you said! Where should I look? Thanks a lot. Best, xunlei -Original Message- From: kkoeni...@web.de [mailto:kkoeni...@web.de] Sent: Friday, March 25, 2011 6:54 AM To: Xunlei Wu Cc: paraview@paraview.org Subject: Re: [Paraview] Empty Object Properties - Custom Reader

Re: [Paraview] Empty Object Properties - Custom Reader Plugin

2011-03-25 Thread Karl König
Xunlei, Have a look at VTK/IO/vtkAVSucdReader.{h,cxx}, that's a simple self-contained reader. You'll need to integrate everything (headers, methods, code blocks etc.) mentioning DataArraySelection into your reader. Karl Xunlei Wu wrote, On 25.03.2011 11:59: Hi Karl, Exactly as you said!

Re: [Paraview] Empty Object Properties - Custom Reader Plugin

2011-03-25 Thread Karl König
By the way, don't let yourself confuse by the fact that that particular reader currently does only fill Cell/Point Array Status for binary AVS UCD files (vtkdata-5.6.1.zip:Data/cellsnd.bin.inp), but not for ASCII AVS UCD files (vtkdata-5.6.1.zip:Data/cellsnd.ascii.inp) Karl Karl König wrote, On

Re: [Paraview] Providing block names within .vtm files

2011-03-25 Thread Favre Jean
I believe the functionality is missing. I have looked for it for many years. I just put together a quick hack, which seems to work fine for me. No exhaustive testing was done. It works for my test data, which are multi-blocks of multi-blocks. It could be generalized to multi-pieces too. I'll

Re: [Paraview] Providing block names within .vtm files

2011-03-25 Thread Adriano Gagliardi
Jean, I had a look at the source too and came to the same conclusion. Admittedly, I was quite surprised considering it is such a important feature of multi-block data storage. Thank you for providing code to handle it though. I'll make changes and test to make sure it works here and update you.

Re: [Paraview] visualizing particles with different radius

2011-03-25 Thread Sohail Shafii
It looks like your v, f and omega arrays (inputs to the glyph filter) cover the same set of points here. Each of them have 117 tuples. You want one glyph filter to apply to all points? Have you tried playing around with the Scale mode?  I was able to get all the points to become spheres to

Re: [Paraview] QListWidget Selection Issue

2011-03-25 Thread Brian Panneton
I have changed the XML to look as such: [code] StringVectorProperty name=w3_DataList information_only=1 ArraySelectionInformationHelper attribute_name=Data / /StringVectorProperty StringVectorProperty

Re: [Paraview] QListWidget Selection Issue

2011-03-25 Thread Brian Panneton
I got rid of the error had to make up a value for selection by adding information_property=w3_DataList to StringVectorProperty w3_lbData. I still can't get the SetDataArrayStatus to be called correctly. It still seems to want to make argument 3 a string. On Fri, Mar 25, 2011 at 11:31 AM,

[Paraview] export to vectorial image format

2011-03-25 Thread Nima Emadi
Dear all, I'd like to export a paraview vector field plot into a vectorial image format (e.g. eps) to generate high quality images which are not huge in size for publication purposes. I already compiled paraview 3.10 with gl2ps=on. So according to old messages in the email list I should be able to

Re: [Paraview] Providing block names within .vtm files

2011-03-25 Thread Adriano Gagliardi
Jean, Your fix works fine and pretty simple to implement. Should this be added as a feature request or possibly a bug? Regards, Adriano === Adriano Gagliardi MEng PhD Business Sector Leader Computational Aerodynamics Aircraft Research Association Ltd. Manton

Re: [Paraview] QListWidget Selection Issue

2011-03-25 Thread Brian Panneton
Okay, I spelled repeat incorrectly. Once I corrected that everything works. On Fri, Mar 25, 2011 at 11:54 AM, Brian Panneton brian.panne...@gmail.comwrote: I got rid of the error had to make up a value for selection by adding information_property=w3_DataList to StringVectorProperty

Re: [Paraview] VRPN with Paraview 3.10

2011-03-25 Thread David E DeMarle
Although it is possible to build a plugin that is compatible with our binaries (using our development libraries is the shortest path to that), I recommend compiling from source instead. I suspect that path will give you fewer headaches. David E DeMarle Kitware, Inc. RD Engineer 28 Corporate

Re: [Paraview] Shortcut for toggling orthographic projection?

2011-03-25 Thread David E DeMarle
Does python trace capture that? If so, you can make a macro for each direction quite easily. David E DeMarle Kitware, Inc. RD Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-371-3971 x109 On Thu, Mar 24, 2011 at 11:24 AM, Paul Melis paul.me...@sara.nl wrote: Hi, Is there

Re: [Paraview] open an in-memory vtk file

2011-03-25 Thread David E DeMarle
vtkDataWriter and vtkDataReader have a method which tells them to write to/read from a buffer rather than to a file. A plugin that makes use of that is probably the quickest path to get started. Alternatively, XDMF has a distributed shared memory option which was developed for the same purpose.

Re: [Paraview] Applying filters in sample app

2011-03-25 Thread Utkarsh Ayachit
Guys, Attached is a patch that demonstrates the use of 3D widgets for manipulating clip plane. Utkarsh On Fri, Mar 25, 2011 at 8:06 AM, owen.arn...@stfc.ac.uk wrote: Hi Utkarsh, I'd also like to see a coded example of this in action. If you have something, could you post it to the list.