Re: [Paraview] CTH/Paraview/Cell Array error

2012-08-07 Thread Alex Rattner
It sounds like there is a data field called Derived Volume defined on cells that does not have values. What data format are you using? Can you manually remove that field from the data file(s)? -Alex On 08/07/2012 02:41 PM, B A wrote: I would like to use Paraview to visualize CTH data from a

Re: [Paraview] Incorporating ImplicitPlane widget into ServerManagerXML

2012-08-02 Thread Alex Rattner
Hi Sebastien, Thank you very much for the advice. I was able to incorporate the implicit_function plane property using this xml as a guide. -Alex On 08/01/2012 05:48 PM, Sebastien Jourdain wrote: Hi Alex, I don't fully understand what you mean but in ParaView the way clip or slice are

Re: [Paraview] Incorporating ImplicitPlane widget into ServerManagerXML

2012-08-02 Thread Alex Rattner
-SetElements(cen); l_proxy-UpdateVTKObjects(); l_view-render(); } On 08/01/2012 11:40 AM, Alex Rattner wrote: Hello, I am trying to develop a compiled paraview filter that takes an input plane/direction vector (like the clip or slice filters). Does anyone know of example code that shows how

[Paraview] Incorporating ImplicitPlane widget into ServerManagerXML

2012-08-01 Thread Alex Rattner
Hello, I am trying to develop a compiled paraview filter that takes an input plane/direction vector (like the clip or slice filters). Does anyone know of example code that shows how to incorporate the ImplicitPlane widget into the server manager xml. In particular, I want a way to get the

Re: [Paraview] How to fill / cap tubular objects?

2012-08-01 Thread Alex Rattner
Hi Chris, If you generated them with the vtkTubeFilter you can set CappingOn. The documentation is in: http://www.vtk.org/doc/nightly/html/classvtkTubeFilter.html . You might be able to call this filter in a python script somehow. -Alex On Aug 1, 2012, at 4:19 PM, Chris wrote: Hallo

[Paraview] Plugin StringVectorProperty Array - string length display issue

2012-06-27 Thread Alex Rattner
Hi all, In a paraview plugin I am developing, I have a StringVectorProperty ArraySelection item in the GUI. The xml for this item is below. When the Get ArrayName function (GetFeatureFXArrayName) returns a char array of 26 characters or fewer, the display is fine. However, when the name is

Re: [Paraview] Shaky 3D view

2012-06-16 Thread Alex Rattner
I think Utkarsh is suggesting that you might be suffering from roundoff error. Maybe try recentering your points about (0,0,0) to see if the issue goes away. -Alex On Jun 16, 2012, at 12:55 PM, Gregory Lewis-Paley wrote: On 12-06-16 02:28 PM, Utkarsh Ayachit wrote: What are the spatial

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

2012-06-14 Thread Alex Rattner
()); vtkCamera* camera = viewProxy-GetActiveCamera(); Hope it helps =) Regards, Jean-Noël 2012/6/13 Alex Rattner alex.ratt...@gatech.edu mailto:alex.ratt...@gatech.edu Hello, I have been working on a c++ paraview filter and would like to modify output data

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

2012-06-13 Thread Alex Rattner
Hello, I have been working on a c++ paraview filter and would like to modify output data based on the camera view direction/location. For example, I may want to highlight data closer to the viewer and remove far away data. Is it possible to access some of this information (like camera

[Paraview] Trouble with information_only GUI property in paraview filter

2012-06-08 Thread Alex Rattner
Hello, I have been developing a feature tracking filter plug-in for paraview for a couple weeks. I am currently trying to improve the plug-in GUI, but ran into an issue. I want the plug-in to return some basic information to the user in the GUI, so I added a property to the server xml file

Re: [Paraview] Trouble with information_only GUI property in paraview filter

2012-06-08 Thread Alex Rattner
Hi Yumin, Thank you for the response. I tried this and still no luck, the property still won't appear. For reference, my new xml was IntVectorProperty name=NumberOfFeatures label=Num Features command=GetNumFeatures number_of_elements=1 default_values=0 information_only=1

Re: [Paraview] Trouble with information_only GUI property in paraview filter

2012-06-08 Thread Alex Rattner
Hi Yumin, Thank you for the suggestion. I debugged into pqNamedWidgets, and found that my property was being excluded from the propertiesToShow list, even with the show=1 setting. When I manually switched it in the debugger, the property showed up and worked correctly. The issue seems to go

Re: [Paraview] Trouble with information_only GUI property in paraview filter

2012-06-08 Thread Alex Rattner
information_only=1 Documentation Number of features in the field. /Documentation /IntVectorProperty Hints Property name=NumberOfFeatures show=1/ /Hints I hope this saves someone else the trouble. Thanks again Yumin for pointing me in the right direction. -Alex On 06/08/2012 03:35 PM, Alex Rattner