Re: [Paraview] Changing vertical scale

2008-10-30 Thread Dominik Szczerba
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Change without altering? You mean appearance? Sounds like an actor property. Dominik Lester Anderson wrote: Hello Very quick question. How do you change the vertical (z) scale, e.g. make it 50% or 25% etc without altering the z-values/range?

Re: [Paraview] Crash when extracting surface in a big mesh

2008-10-30 Thread Paul Edwards
Hi. I fixed the problem. I updated those 4 variables as suggested by Mike in vtkDataSetSurfaceFilter.h: int FastGeomQuadArrayLength; int NumberOfFastGeomQuadArrays; int NextArrayIndex; int NextQuadIndex; All are set to vtkIdType. Also, I needed to change how FastGeomQuadArrayLength is

[Paraview] Simple Visualization

2008-10-30 Thread Lorenzo Isella
Dear All, I am a complete newbie in visualization, so an apology in advance is what I ask will sound trivial. I am browsing several Paraview tutorials, but I am missing out what I really need. Right now, I do NOT need e.g. to plot a temperature field on a metal slab with a non-trivial geometry.

[Paraview] FW: Changing vertical scale

2008-10-30 Thread Lester Anderson
From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: RE: [Paraview] Changing vertical scaleDate: Thu, 30 Oct 2008 12:42:51 + Yes. Keep the data as is but just change the visual scale. S instead of your z-axis being say 5cm (if you measured it on screen) you want to reduce it to a smaller scale

Re: [Paraview] Changing vertical scale

2008-10-30 Thread Lester Anderson
Thanks - found the transformation section Cheers Lester Date: Thu, 30 Oct 2008 13:47:48 +0100 From: [EMAIL PROTECTED] To: [EMAIL PROTECTED]; paraview@paraview.org Subject: Re: [Paraview] Changing vertical scale -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 See display properties at the

Re: [Paraview] Simple Visualization

2008-10-30 Thread Moreland, Kenneth
To be honest, ParaView doesn't make loading in a simple list of coordinates as easy as it should. It's something we will be working on in the near future (e.g. bug #5016, http://www.paraview.org/Bug/view.php?id=5016). However, it is still possible to do what you want, it just takes a few more

Re: [Paraview] Simple Visualization

2008-10-30 Thread David E DeMarle
Or, try out the example of a python programmable reader that I've just posted to the wiki. http://www.paraview.org/Wiki/Here_are_some_more_examples_of_simple_ParaView_3_python_filters. To use it, open up Source-Programmable Source, set the output type to Poly Data, paste in the text, correct the

Re: [Paraview] Simple Visualization

2008-10-30 Thread David E DeMarle
On Thu, Oct 30, 2008 at 12:50 PM, Lorenzo Isella [EMAIL PROTECTED] wrote: Hello, Sorry for coming back to this topic again. I applied your suggestion to the example case and, as far as I can say, it works. However, when applied to another case (this time with 5000 particles), the result is

Re: [Paraview] Simple Visualization

2008-10-30 Thread Lorenzo Isella
Try this: in the GUI filter the source or readers output through a calculator filter to add an array with a constant value. Then apply the Glyph filter and scale by the new array. Now save the output of the calculator as a VTK file and compare it with the original. Alright, we'll get to the