Re: [Paraview] Application using Paraview library in C++

2010-03-02 Thread Eric E. Monson
Hey Adebayo, (Please reply on list so everyone can contribute and learn together.) If you go to the Paraview downloads page: http://www.paraview.org/paraview/resources/software.html Down near the bottom of the page there are instructions for downloading (checking out with CVS) the current

Re: [Paraview] Linking in plugin for static build

2010-03-02 Thread Utkarsh Ayachit
Hmm, I haven't tried this but worth a shot: try calling PV_PLUGIN_IMPORT() after vtkSMApplication-Initialize() has been called in pvserver.cxx Utkarsh On Mon, Mar 1, 2010 at 5:06 PM, Moreland, Kenneth kmo...@sandia.gov wrote: Wait, I just realized that’s not right.  I don’t want to build the

Re: [Paraview] ParaView 3.8 Branch Comming Soon

2010-03-02 Thread Dave Partyka
Hello All, The time for the 3.8 branch is quickly approaching. I just want to send out a reminder that if there are features/bug fixes that need to be part of the 3.8 release that are not yet checked in please send me an email and let me know what they are. We would like to make the branch mid

Re: [Paraview] Problems with Paraview 3.7-dev: Save screenshot, ExtractBlock in Python

2010-03-02 Thread bastil2...@yahoo.de
Am 01.03.2010 19:19, schrieb Utkarsh Ayachit: Sounds like an offscreen rendering issue, can you try disabling Use offscreen rendering for screenshots from Edit |Settings | Render View page? Utkarsh Thanks Utkarsh. Turning off-screen-rednering off everything works fine. Additionally, the

Re: [Paraview] Problems with Paraview 3.7-dev: Save screenshot, ExtractBlock in Python

2010-03-02 Thread pat marion
Hi, I'm unable to reproduce that crash using paraview cvshead. Is it possible for you to provide a backtrace from a debugger? Pat On Tue, Mar 2, 2010 at 1:40 PM, bastil2...@yahoo.de bastil2...@yahoo.dewrote: Am 01.03.2010 19:19, schrieb Utkarsh Ayachit: Sounds like an offscreen rendering

Re: [Paraview] [Paraview-developers] The Quest for Data

2010-03-02 Thread Utkarsh Ayachit
Eric, I've committed a fix for this issue. Feel free to give it a try. /cvsroot/ParaView3/ParaView3/VTK/Graphics/vtkExtractSelectedIds.cxx,v -- VTK/Graphics/vtkExtractSelectedIds.cxx new revision: 1.31; previous revision: 1.30 Thanks Utkarsh On Mon, Mar 1, 2010 at 2:42 PM, Utkarsh Ayachit

Re: [Paraview] [Paraview-developers] The Quest for Data

2010-03-02 Thread Eric E. Monson
Hey Utkarsh, That works great -- thanks! Is there an important reason for the Find Data dialog to be modal? I find myself wanting to interact with the render window to see the positions of the selected points, but I'm locked out, and then it's annoying because if I close the dialog and then

Re: [Paraview] Name query from multi-block data in Python

2010-03-02 Thread Utkarsh Ayachit
Yea, I don;t see why not. You can create the iterator as follows: from paraview.simple import * iter = servermanager.vtkPVCompositeDataInformationIterator() Utkarsh On Mon, Mar 1, 2010 at 5:04 PM, bastil2...@yahoo.de bastil2...@yahoo.de wrote: Thanks. Can this be done from within Python?

Re: [Paraview] Problems with Paraview 3.7-dev: Save screenshot, ExtractBlock in Python

2010-03-02 Thread bastil2...@yahoo.de
In general, yes. However, I have never done this before so I need a short introduction how to do that. Thanks Bastian Am 02.03.2010 19:45, schrieb pat marion: Hi, I'm unable to reproduce that crash using paraview cvshead. Is it possible for you to provide a backtrace from a debugger? Pat

Re: [Paraview] Problems with Paraview 3.7-dev: Save screenshot, ExtractBlock in Python

2010-03-02 Thread pat marion
In a terminal, cd to the paraview build directory, then: gdb bin/paraview run This will open paraview. Try to recreate the crash, then go back to the terminal and type: bt Copy the entire terminal output to the mailing list. Pat On Tue, Mar 2, 2010 at 3:45 PM, bastil2...@yahoo.de

Re: [Paraview] [Paraview-developers] The Quest for Data

2010-03-02 Thread Utkarsh Ayachit
Eric, It's that and also the fact the the the complexity if the dialog increases since then it needs to observer removal of source, track active view, track active view changes. What I was playing with is trying to enable only interaction with the view and nothing else, which would overcome these