Re: [Paraview] Octree Mesh

2010-01-13 Thread Ivo Roghair
Hi, With respect to the slicing; you could try to use the Extract Cells By Region filter, instead of the slice filter; my structured grid -- consisting of cubic cells -- is then sliced in the expected way keeping the cell structure as it was, whereas the slice tool seems to create an

[Paraview] Programmatic Generation of 3D Extruded Text

2010-01-13 Thread David Morris
Is there any way to generate strings of 3D extruded text using Paraview? I would like to do it outside of the GUI to automate the process as much as possible and make it easy to repeat for different strings. Thanks for your help in advance, -- Dave Morris http://dave.showviz.net/

Re: [Paraview] netCDF reader

2010-01-13 Thread Moreland, Kenneth
The netCDF reader in ParaView implements the COARDS convention, which is a subset of the CF convention. To the best of my knowledge, both conventions define the spherical coordinates in the same way. So if you have a netCDF file containing the CF convention for latitude and longitude, then

Re: [Paraview] Setting a string property from list in information_only property

2010-01-13 Thread Moreland, Kenneth
Not until you just suggested it. That works perfectly. Thanks. -Ken On 1/13/10 11:41 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Have you tried StringListDomain? On Wed, Jan 13, 2010 at 1:34 PM, Moreland, Kenneth kmo...@sandia.gov wrote: I have a reader that in

Re: [Paraview] [Bug?] Transform Filter does not transform vectors in point data

2010-01-13 Thread Oliver Borm
I just want to pick up the discussion about the transformation of vectors with the transform filter. As stated in bug 7387, only the active vectors are transformed properly. As I tried from my simple test case (see attachment), active vectors just means the last vector in the vector list is

[Paraview] Patch for pqPluginManager to better readability

2010-01-13 Thread Michael Jackson
I was trying to diagnose why ParaView was not loading some of my plugins and it occurred to me that the dialog box for loading plugins, while somewhat verbose, is not that easy to interpret: ParaView.app/Contents/MacOS/../Plugins;ParaView.app/Contents/ MacOS/../../Plugins. I was thinking

Re: [Paraview] Bug In Moments Plugin CMake Code

2010-01-13 Thread Dave Partyka
Ick! Will do. On Wed, Jan 13, 2010 at 1:42 PM, Michael Jackson mike.jack...@bluequartz.net wrote: ParaView3/Plugins/CMakeLists.txt line 37: paraview_build_optional_plugin(Moments, Filters for Flux and Circulation Fields Moments ON) --^ Note the comma

[Paraview] Clip filter bogs down after repeated Clip Type changes

2010-01-13 Thread Eric E. Monson
Hello, I noticed something strange when debugging a variation on the clip filter as a plugin, but found that it happens with the standard Clip filter, too. If you switch repeatedly back and forth between Clip Types (Applying in between), the filter starts getting slower and slower and

Re: [Paraview] netCDF reader

2010-01-13 Thread Brockmann Patrick
Moreland, Kenneth a écrit : The netCDF reader in ParaView implements the COARDS convention, which is a subset of the CF convention. To the best of my knowledge, both conventions define the spherical coordinates in the same way. So if you have a netCDF file containing the CF convention for

[Paraview] vtkStdString

2010-01-13 Thread Brockmann Patrick
Hi all, Could someone provide me an example 'to lowcase' a vtkStdString ? I would like to apply a tolower() method but don't know how. vtkStdString units; if (units.find( since ) != vtkStdString::npos) { ... Thanks Patrick

Re: [Paraview] vtkStdString

2010-01-13 Thread David Thompson
Could someone provide me an example 'to lowcase' a vtkStdString ? I would like to apply a tolower() method but don't know how. vtkStdString units; if (units.find( since ) != vtkStdString::npos) { ... Take a look at VTK/Utilities/kwsys/SystemTools.hxx.in and