[Paraview] Buggy development package?

2010-07-07 Thread Michael Wild
Hi all I wanted to give the new development package (ParaView-Development-3.8.0-Darwin-x86_64.tar.gz) a try and use it to compile a plugin on my Mac. However, it seems that lib/paraview-3.8/CMake/ParaViewLibraryDepends.cmake contains XXX_LIB_DEPENDS variables referencing libraries from the

Re: [Paraview] Buggy development package?

2010-07-07 Thread Dave Partyka
Good Catch Michael, I'll give that a shot On Wed, Jul 7, 2010 at 2:43 AM, Michael Wild them...@gmail.com wrote: Hi all I wanted to give the new development package (ParaView-Development-3.8.0-Darwin-x86_64.tar.gz) a try and use it to compile a plugin on my Mac. However, it seems that

[Paraview] Custom readers for files with 'similar' extensions

2010-07-07 Thread Johnson, Duncan (UK)
Hello all, I have a set of output files, one of extension *.ren and another of extension *.ren.out. I have two custom readers which open these files correctly if only one of the reader plugins is loaded at a time. If both are loaded then paraview will segmentation fault occasionally. The

Re: [Paraview] Custom readers for files with 'similar' extensions

2010-07-07 Thread Sven Buijssen
Hi Duncan, Do both of your plugins provide a method CanReadFile()? If not, that'd probably solve the issue. There are many reader classes in the ParaView source tree that may provide you with a suitable template for your CanReadFile method. Sven Johnson, Duncan (UK) wrote, On 07.07.2010

Re: [Paraview] Custom readers for files with 'similar' extensions

2010-07-07 Thread Johnson, Duncan (UK)
I've had a quick look and they both do, but are simply functions that return '1' with no checking involved. I'll have a look through the source plugins as you suggested to see if I can find some examples. Duncan -Original Message- From: Sven Buijssen

Re: [Paraview] Buggy development package?

2010-07-07 Thread Michael Wild
Also, ParaViewConfig.cmake, VTKConfig.cmake and VTKLibraryDepends.cmake have similar problems. When I said that unsetting the XXX_LIB_DEPENDS variables was solving the problem, I was mistaken. It actually breaks things, but I didn't notice it until tried to load the plugin (I was using

Re: [Paraview] Buggy development package?

2010-07-07 Thread Dave Partyka
I was able to recreate the error. I am going to try and fix it now. On Wed, Jul 7, 2010 at 7:45 AM, Michael Wild them...@gmail.com wrote: Also, ParaViewConfig.cmake, VTKConfig.cmake and VTKLibraryDepends.cmake have similar problems. When I said that unsetting the XXX_LIB_DEPENDS variables

[Paraview] volumetric glyph

2010-07-07 Thread Pawel Krupinski
Hi, I have some particle data (points with other data) to which I can attach different glyphs.That works fine except of when I make a clip of it. The glyphs are limited to polyData so they display only surface, which is problematic for me since I would like the clipped surface to be solid.

Re: [Paraview] volumetric glyph

2010-07-07 Thread Utkarsh Ayachit
Are you clipping the original dataset and then applying glyph or are you clipping the result of the glyph filter? In other words which of the following two pipelines describes your case: 1 DataSource - Clip - Glyph 2 DataSource - Glpyh - Clip Utkarsh On Wed, Jul 7, 2010 at 11:30 AM, Pawel

Re: [Paraview] Fail to build pqApplicationComponents in ParaView3.8.0 on Windows764bit MSVC2010

2010-07-07 Thread David E DeMarle
I've just committed a fix to make Adaptive ParaView compile again on Windows. Streaming ParaView was not broken. David E DeMarle Kitware, Inc. RD Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-371-3971 x109 On Fri, Jul 2, 2010 at 1:19 PM, Robert Maynard

[Paraview] text glyph

2010-07-07 Thread Greg Abram
Suppose I have a set of points in space, with a integer at each point (think Sphere-CellCenters-GenerateIDs) and want to render a text numeric at each point). Is there a way? Greg -- Gregory D. Abram, Ph.D. Texas Advanced Computing Center JJ Pickle Research Campus - ROC 1.101 Bldg 196 10100

Re: [Paraview] text glyph

2010-07-07 Thread David E DeMarle
Select Cells Through and rubber band select the whole screen. Open selection inspector panel, scroll to bottom, turn on cell labels, and pick the array you want to display. Warning, with big data this is impractical, which is why there isn't a more direct way to do it. You can probably create a

Re: [Paraview] Using Threshold

2010-07-07 Thread Michael Cohen
On 07/06/2010 09:32 PM, David Thompson wrote: I definitely want to break it up into a point cloud, probably using the glyph filter to create a vertex cell at each point. How do I go about this? Load your data. Go to the Filters menu and choose Glyph. When the filter options appear in the

Re: [Paraview] Using Threshold

2010-07-07 Thread Eric E. Monson
Hey Michael, If you really need non-vertex 2d glyphs that face the camera, hopefully someone can help you get closer to that, but I wanted to mention another option: Point Sprites. If you have a point cloud and change the Representation to Point Sprite, you can go to the Display tab and change

Re: [Paraview] text glyph

2010-07-07 Thread David Doria
On Wed, Jul 7, 2010 at 3:07 PM, David E DeMarle dave.dema...@kitware.com wrote: Select Cells Through and rubber band select the whole screen. Open selection inspector panel, scroll to bottom, turn on cell labels, and pick the array you want to display. Warning, with big data this is