[Paraview] set Representation opacity

2011-04-11 Thread Gil Wertz
I try to set pqPipelineRepresentation opacity but have no conclusive result ... There is a getOpacity but no setOpacity function, I looked at paraview's code but I didn't find an easy way ( no way at all ) to set the opacity of my pqPipelineRepresentations that are in my pqRenderView. Any

Re: [Paraview] set Representation opacity

2011-04-11 Thread Gil Wertz
I founded a way to do that easily : vtkSMProxy *proxy = representation-getProxy(); vtkSMProperty * prop = proxy-GetProperty(Opacity); pqSMAdaptor::setElementProperty(prop, value); proxy-UpdateVTKObjects(); this-m_RenderView-render(); Regards Wertz Gil

[Paraview] paraview kills itself while saving animation

2011-04-11 Thread Bart Vandewoestyne
Hello list, I am trying to create an animation out of 2654 .vtu files. Each .vtu file is 6888 bytes large. That is about 18GB of data. I am asking an Animation Duration of 10 seconds and a Frame Rate of 32 fps. With ParaView 3.10.0 32-bit on Ubuntu 10.10, ParaView kills itself after a while.

Re: [Paraview] paraview kills itself while saving animation

2011-04-11 Thread Utkarsh Ayachit
Bart, A few memory leaks were detected in 3.10.0. We have fixes for those waiting to go into 3.10.1. You may want to wait for 3.10.1 (which should be out soon) and give that a try. Another thing to try would be to disable Geomtry Cache on the Animation Page in the Settings dialog (You'll have to

Re: [Paraview] set Representation opacity

2011-04-11 Thread Utkarsh Ayachit
Indeed. Another way I like to use to set properties is as follows: vtkSMProxy *proxy = representation-getProxy(); vtkSMPropertyHelper(proxy, Opacity).Set(value); proxy-UpdateVTKObjects(); Utkarsh On Mon, Apr 11, 2011 at 6:10 AM, Gil Wertz gilwe...@hotmail.com wrote: I founded a way to do that

Re: [Paraview] set Representation opacity

2011-04-11 Thread Gil Wertz
And which one is better ? Wertz Gil gilwe...@hotmail.com Date: Mon, 11 Apr 2011 08:47:50 -0400 Subject: Re: [Paraview] set Representation opacity From: utkarsh.ayac...@kitware.com To: gilwe...@hotmail.com CC: paraview@paraview.org Indeed. Another way I like to use to set properties

[Paraview] set 3D Glyphs arrow orientation

2011-04-11 Thread Gil Wertz
Is there a way to set 3D Glyphs (from pqDisplayRepresentationWidget) arrow orientation ? for example set +x,-x,+y,-j,+z or -z as arrow orientation. Regards Wertz Gil gilwe...@hotmail.com ___ Powered by

Re: [Paraview] some points are not shown

2011-04-11 Thread Bart Vandewoestyne
On Thu, Apr 07, 2011 at 08:11:25AM -0400, David E DeMarle wrote: How can I make sure that the wireframe representation is *exactly* the cell-configuration that I have specified in my .vtu file? Use the shrink filter with a factor of 1 and show the wireframe of that. Use a smaller shrink

Re: [Paraview] set 3D Glyphs arrow orientation

2011-04-11 Thread Utkarsh Ayachit
Not currently, however I've added a bug report for that: http://www.paraview.org/Bug/view.php?id=12070 Utkarsh On Mon, Apr 11, 2011 at 9:48 AM, Gil Wertz gilwe...@hotmail.com wrote: Is there a way to set 3D Glyphs (from pqDisplayRepresentationWidget) arrow orientation ? for example set

[Paraview] what's wrong with it?

2011-04-11 Thread 胡健
hello all: I want to add vtkHAVSvolumemapper to paraview as a plugin! here is my xml file: when I run paraview and load the plugin and open a data, the program will give me an error message access violation. anybody know what's wrong with it? I also upload my .h .cxx and cmakelist file in

[Paraview] PovRay-Export does not seem to work

2011-04-11 Thread win...@gmx.net
Hello, using the online available ParaView 3.10.0 32bit on a Linux system, I cannot get to PovRay export function to do anything but exporting all light sources. What I do is to create a simple cube (under Sources--Cube) and then use the Export-option from the File menu. Afterwarfs, my

Re: [Paraview] PovRay-Export does not seem to work

2011-04-11 Thread David Partyka
Hi Mathias, this is fixed in the upcoming ParaView 3.10.1 release. Stay tuned. On Mon, Apr 11, 2011 at 12:47 PM, win...@gmx.net win...@gmx.net wrote: Hello, using the online available ParaView 3.10.0 32bit on a Linux system, I cannot get to PovRay export function to do anything but exporting

Re: [Paraview] Still more trouble compiling VisitBridge with Paraview 3.10 on RHEL 5

2011-04-11 Thread Cook, Rich
Hi, thanks for replying. I don't know what went wrong. One thing is that paraview wants to When I launch paraview, and then choose File-Open, then click on the Files of Type pull down menu in the File Open dialog, I see some Visit plugins, such as my ParaDIS reader, so I think some of the

Re: [Paraview] storing tensors in hdf5?

2011-04-11 Thread Pratik Mallya
Pratik Mallya wrote: Pratik Mallya wrote: Well, that is why i chose the subject title to be so :). In particular, I since I am using numpy (and h5py) to calculate the tensor, I am storing the result (a 256X256X9 ndarray named Q) into h5 file by using a command of the form:

Re: [Paraview] Still more trouble compiling VisitBridge with Paraview 3.10 on RHEL 5

2011-04-11 Thread Cook, Rich
I also forgot to include the fact that IMO the installer stripping the rpath out of binaries without any way to prevent this breaks my install and is in my opinion a bug :-) I have to install them by just copying them by hand. -- Rich On Apr 11, 2011, at 10:37 AM, Cook, Rich wrote: Hi,

Re: [Paraview] Still more trouble compiling VisitBridge with Paraview 3.10 on RHEL 5

2011-04-11 Thread Utkarsh Ayachit
I was hoping someone was going respond about the rpath stripping, but alas I suppose I'll have to :). rpaths are stripped to ensure that installed executable don't depend on anything that is not installed. To circumvent the LD_LIBRARY_PATH issues, Paraview uses what we call shared-forwarding. The

Re: [Paraview] what's wrong with it?

2011-04-11 Thread Utkarsh Ayachit
What version of ParaView are you using? Did you look at the updated example to add a mapper for the 3.10 onwards on wiki I posted to your query earlier. You'll notice that the style has changed. You no long define the XML are you are doing here. Please refer to the example and Wiki I mentioned

Re: [Paraview] Still more trouble compiling VisitBridge with Paraview 3.10 on RHEL 5

2011-04-11 Thread Utkarsh Ayachit
Rich, Dave just reminded me that you're doing a static build, I missed that. In that case you will no have the wrapper executable I was referring to and shared forwarding does not apply. Out of curiosity, what libraries are you linking in shared with this static build? Utkarsh On Mon, Apr 11,

Re: [Paraview] Still more trouble compiling VisitBridge with Paraview 3.10 on RHEL 5

2011-04-11 Thread Brad King
On 04/11/2011 01:57 PM, Utkarsh Ayachit wrote: rpaths are stripped to ensure that installed executable don't depend on anything that is not installed. To circumvent the LD_LIBRARY_PATH issues, Paraview uses what we call shared-forwarding. The paraview executable that gets installed in bin

Re: [Paraview] Still more trouble compiling VisitBridge with Paraview 3.10 on RHEL 5

2011-04-11 Thread Cook, Rich
Hello, I don't know why or how I'm doing a static build and am not married to the idea -- it appears to be incidental to other choices I'm making. I certainly never checked a box or set a variable explicitly requesting a static build that I recall. I don't know if this list will allow me to

Re: [Paraview] Still more trouble compiling VisitBridge with Paraview 3.10 on RHEL 5

2011-04-11 Thread David Partyka
Hi Rich, in CMake gui is BUILD_SHARED_LIBS on or off, that is what decides if you're doing static or not. On Mon, Apr 11, 2011 at 2:34 PM, Cook, Rich coo...@llnl.gov wrote: Hello, I don't know why or how I'm doing a static build and am not married to the idea -- it appears to be incidental to

Re: [Paraview] VisIt Database Bridge - Custom Plugin of VisIt Reader

2011-04-11 Thread Simon Su
Hi Robert, I inferred a CMakeLists.txt from the wiki page CMakeLists.txt for the plugin PROJECT(VisItReaderGFDL) cmake_minimum_required(VERSION 2.8) FIND_PACKAGE(ParaView REQUIRED) INCLUDE(${PARAVIEW_USE_FILE}) SET(SOURCES avtCM24FileFormat.C )

Re: [Paraview] Still more trouble compiling VisitBridge with Paraview 3.10 on RHEL 5

2011-04-11 Thread Robert Maynard
Hi Rich, I am currently on working on get mili installed on a test machine to confirm that it works when built both with dynamic and statically with ParaView. On Mon, Apr 11, 2011 at 3:16 PM, Cook, Rich coo...@llnl.gov wrote: Hmm, I thought it only applied to IceT: //Build IceT with shared

Re: [Paraview] VisIt Database Bridge - Custom Plugin of VisIt Reader

2011-04-11 Thread Robert Maynard
Hi Simon, You do not need to modify the avt file or add the revision macro as that is not the problem you are currently facing. I would try reverting your avt file to its original content, adding all the files listed in the Files components=M xml block to your SOURCES list, and adding the plugin

Re: [Paraview] VisIt Database Bridge - Custom Plugin of VisIt Reader

2011-04-11 Thread Simon Su
Hi Robert, It worked. adding the other file listed under my Files components=M xml block solve the error when the plugin manager tries to loader the plugin. So I went and try to load my file in ParaView ... but this is what I got

Re: [Paraview] Still more trouble compiling VisitBridge with Paraview 3.10 on RHEL 5

2011-04-11 Thread Cook, Rich
FYI, The dynamic build also failed just like the static build, as it apparently fails to include my value of MILI_INCLUDE_DIR. So I have for now added that directory to the SILO_INCLUDE_DIR to enable compiling. [ 32%] Building CXX object

[Paraview] ParaView builds using Mesa

2011-04-11 Thread Scott, W Alan
I am trying to create a paraview (client side) build of ParaView using Mesa on Linux. I have compiled Mesa using Mesa 7.4.2, compiled with 'make linux-x86-64-static'. I am now trying to compile ParaView, and keep failing with the following: [ 7%] Built target Cosmo Linking CXX shared library

Re: [Paraview] ParaView builds using Mesa

2011-04-11 Thread pat marion
Hi Alan, Are you building with python enabled? If python is enabled then BUILD_SHARED_LIBS will turn itself on automatically. Is there any reason you cannot compile mesa with shared libs, or compile mesa static with -fPIC? Pat On Mon, Apr 11, 2011 at 8:00 PM, Scott, W Alan