[Paraview] PV3.8 RC1: Ctrl+O no longer works

2010-04-19 Thread Paul Melis
Hi, After starting a fresh PV3.8RC1 and pressing Ctrl+O to get started, I get: QAction::eventFilter: ambiguous shortcut overload: Ctrl+O ... and no file open dialog. Regards, Paul ___ Powered by www.kitware.com Visit other Kitware open-source

[Paraview] Change the font in the Line Chart/XY plot

2010-04-19 Thread Paul Edwards
Hi, Is there a way to change the font for the legend text? In the chart options it only gives options for the location and flow and it doesn't seem to follow any of the other font settings. Thanks, Paul ___ Powered by www.kitware.com Visit other

[Paraview] Probleme to make paraview

2010-04-19 Thread Stéphane Le Borgne
Hi all, I can't resolve this problem. When i compile Paraview, (under Centos 5.x) i always have this message : Linking CXX executable ../../../../../bin/QVTKCxxTests /usr/bin/ld: warning: libmpi.so.0, needed by ../../../../../bin/libvtkParallel.so.pv3.8, not found (try using -rpath or

Re: [Paraview] Probleme to make paraview

2010-04-19 Thread Mark Olesen
On Mon, 2010-04-19 at 10:19 +0200, Stéphane Le Borgne wrote: Hi all, I can't resolve this problem. When i compile Paraview, (under Centos 5.x) i always have this message : Linking CXX executable ../../../../../bin/QVTKCxxTests /usr/bin/ld: warning: libmpi.so.0, needed by

Re: [Paraview] PV3.8.0 RC1 LIC and VisIt plugins

2010-04-19 Thread Richard GRENON
Richard GRENON wrote: John Patchett wrote: Hi Richard, I diagnosed a problem yesterday on both a Fedora 11 and Fedora 12 box with NVidia Graphics Cards where ParaView 3.8 would go to lunch connecting with gdb we noted each time it was in an OpenGL call. I replaced the NVidia 195.36.15 driver

Re: [Paraview] PV3.8 RC1: Ctrl+O no longer works

2010-04-19 Thread Felipe Bordeu Weldt
I'm using PV3.8RC1 for Mac and everything work fine. are you using the linux or windows version ??? Felipe Le 19 avr. 10 à 09:46, Paul Melis a écrit : Hi, After starting a fresh PV3.8RC1 and pressing Ctrl+O to get started, I get: QAction::eventFilter: ambiguous shortcut overload:

Re: [Paraview] PV3.8 RC1: Ctrl+O no longer works

2010-04-19 Thread Paul Melis
Felipe Bordeu Weldt wrote: I'm using PV3.8RC1 for Mac and everything work fine. are you using the linux or windows version ??? Oops, forgot the platform details. It's on 32-bit Linux, with PV 3.8 RC1 compiled against Qt 4.6.2 (the SDK version). Paul

[Paraview] PV 3.8 RC1 + Cmake 2.8.1 failing?

2010-04-19 Thread Paul Melis
Hi, I previously built PV 3.8 RC1 with cmake 2.6.4 successfully. I've now switched to cmake 2.8.1 and compilation succeeds 99.9% :) [...] Scanning dependencies of target NIfTIWriter [100%] Building CXX object Plugins/AnalyzeNIfTIReaderWriter/CMakeFiles/NIfTIWriter.dir/qrc_NIfTIWriter.cxx.o [100%]

Re: [Paraview] PV 3.8 RC1 + Cmake 2.8.1 failing?

2010-04-19 Thread Sven Buijssen
Hi Paul, That's a known issue with PV 3.8 RC1 and CVS HEAD when compiling from scratch, occurring on 64bit Linux systems, but not on 32bit Linux nor 64bit Solaris SPARC. Don't know about Mac or Windows. It is caused by PARAVIEW_GENERATE_PROXY_DOCUMENTATION:BOOL=ON. Set it to OFF and you'll not

Re: [Paraview] PV3.8 RC1: Ctrl+O no longer works

2010-04-19 Thread Robert Maynard
On Mon, Apr 19, 2010 at 6:32 AM, Paul Melis paul.me...@sara.nl wrote: Felipe Bordeu Weldt wrote: I'm using PV3.8RC1 for Mac and everything work fine. are you using the linux or windows version ??? Oops, forgot the platform details. It's on 32-bit Linux, with PV 3.8 RC1 compiled against

Re: [Paraview] Probleme to make paraview

2010-04-19 Thread David E DeMarle
When you configure paraview with cmake, do you have both libmpi.so and libmpi_cxx (in MPI_LIBRARY, MPI_EXTRA_LIBRARY)? David E DeMarle Kitware, Inc. RD Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-371-3971 x109 2010/4/19 Stéphane Le Borgne stephane.lebor...@univ-pau.fr:

Re: [Paraview] Accelerated volume rendering in 3.8.0-RC1?

2010-04-19 Thread David E DeMarle
The new GPU accelerated volume rendering algorithm is only for Image Data. Your data must be unstructured, because you are seeing the unstructured grid volume rendering algorithms, which have not been updated. David E DeMarle Kitware, Inc. RD Engineer 28 Corporate Drive Clifton Park, NY

Re: [Paraview] Find Data in Python

2010-04-19 Thread Utkarsh Ayachit
You can simply call UpdatePipeline() as follows: from paraview.simple import * UpdatePipeline(proxy=extractSelectionSource) This will update the extract selection filter explicitly. Look at help(UpdatePipeline) for details. Utkarsh On Sun, Apr 18, 2010 at 3:38 PM, Christian Werner

[Paraview] Python Programmable Filter

2010-04-19 Thread Favre Jean
Hello Can one write a Python Programmable Filter with multiple outputs? I tried the obvious self.SetNumberOfOutputPorts(2), which complained, and in any case, I wonder how it would interact with the GUI option which defines the output Data Set Type. Since there is a single option, I guess I

[Paraview] Probleme to compile Paraview

2010-04-19 Thread Stéphane Le Borgne
Hi all, Here's message from compile. I must insert-i_dynamic in ccmake but i don't know where i must insert it. Can you help me ? Best regards. Stéphane Linking CXX executable ../../../../../bin/QVTKCxxTests _/opt/cluster/intel/fce/10.1.021/lib/libimf.so: warning: warning: feupdateenv

Re: [Paraview] Python Programmable Filter

2010-04-19 Thread Utkarsh Ayachit
No, it's not possible to write a python programmable filter with multiple output ports. The number of output ports needs to be set in the constructor of the class itself which is too early to be able to set by the user from the panel for any filter. Workaround is producing a multi-block. Utkarsh

Re: [Paraview] Probleme to make paraview

2010-04-19 Thread Stéphane Le Borgne
Le 19/04/2010 14:49, David E DeMarle a écrit : When you configure paraview with cmake, do you have both libmpi.so and libmpi_cxx (in MPI_LIBRARY, MPI_EXTRA_LIBRARY)? David E DeMarle Kitware, Inc. RD Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-371-3971 x109 2010/4/19

Re: [Paraview] please help do constuct 3d surface chart from csv file

2010-04-19 Thread Utkarsh Ayachit
If the issue is indeed scale, then you can apply the Transform filter to scale the points. Utkarsh On Sun, Apr 18, 2010 at 2:37 PM, Chris Botha solidsto...@gmail.com wrote: Utkarsh/Berk Thank you both for taking the time to reply to my question. I have done what you have suggested - and

Re: [Paraview] Find Data in Python

2010-04-19 Thread Utkarsh Ayachit
Does your data have time? If not, you don't need to specify the time=1 attribute at all. So SelectionWriter is the thing that's coming from your plugin? Does it support writing empty datasets? Can you attach a debugger and see where is crashes? Are you sure it's not crashing in the writer? I

Re: [Paraview] PV 3.8 RC1 + Cmake 2.8.1 failing?

2010-04-19 Thread Paul Melis
Hi Sven, Sven Buijssen wrote: That's a known issue with PV 3.8 RC1 and CVS HEAD when compiling from scratch, occurring on 64bit Linux systems, but not on 32bit Linux nor 64bit Solaris SPARC. Don't know about Mac or Windows. For completeness, this is on 32-bit Linux. It is caused by

Re: [Paraview] CVS-Git Transition Plan

2010-04-19 Thread Brad King
Brad King wrote: CVS commits to these repositories have been disabled. I will complete the final conversions of history today and over the weekend. We're pleased to announce the completion of the repository conversion. The CVS repositories have been permanently frozen (though I'll be adding

Re: [Paraview] [vtk-developers] CVS-Git Transition Plan

2010-04-19 Thread Brad King
Brad King wrote: IMPORTANT NOTE: The official histories now published at the above URLs are *incompatible* with all previous Git repositories for these projects. You *must* do a *fresh* clone from scratch. Please do not try to pull into an existing clone that was created from the CVS-Git

Re: [Paraview] Find Data in Python

2010-04-19 Thread Christian Werner
Does that mean that I have to create a selection with explicitly defining the points? Oh man... Then I can forget the whole thing anyway. Everything is so nice about Paraview, but this selection thing is driving me mad. It's still all about making it as easy as possible for the user to

[Paraview] make install is not installing my plugins

2010-04-19 Thread Michael Jackson
OS X 10.5.8 using ParaView 3.8 branch (Just updated today). when I do a Make install I get the ParaView.app bundle created but my custom plugins that I added to the build using the EXTERNAL_MODULES technique are NOT being added to the Plugins directory in the final app bundle. I thought

Re: [Paraview] make install is not installing my plugins

2010-04-19 Thread Utkarsh Ayachit
Dave, Did you every update the bundle-building script to use the CMAKE variable paraview defines that lists all the plugins instead of hard coding them in the packaging script? Utkarsh On Mon, Apr 19, 2010 at 11:26 AM, Michael Jackson mike.jack...@bluequartz.net wrote: OS X 10.5.8 using

Re: [Paraview] make install is not installing my plugins

2010-04-19 Thread Dave Partyka
Yeah, in this change the CompleteBundle.cmake.in script should package everything that is accumulated in ${PARAVIEW_PLUGINLIST}. http://public.kitware.com/cgi-bin/viewcvs.cgi/Applications/ParaView/CompleteBundle.cmake.in?root=ParaView3r1=1.3r2=1.2.2.1 On Mon, Apr 19, 2010 at 12:09 PM, Utkarsh

Re: [Paraview] make install is not installing my plugins

2010-04-19 Thread Michael Jackson
Did that get into the CVS ParaView-3-8 branch? Should I check re- checkout from Git? If so what branch is the ParaView 3.8 RC1? ___ Mike Jackson www.bluequartz.net Principal Software Engineer

Re: [Paraview] make install is not installing my plugins

2010-04-19 Thread Dave Partyka
It is on both cvs HEAD and the final version of the cvs ParaView-3-8 branch. We haven't finalized how the branch will be accessed in git (yet) but I will let you know as soon as it is. On Mon, Apr 19, 2010 at 12:28 PM, Michael Jackson mike.jack...@bluequartz.net wrote: Did that get into the

[Paraview] Xdmf GlobalID attribute removed by Clip

2010-04-19 Thread Eric E. Monson
Hello, It seems that we're sort of getting the worst of both worlds right now ParaView and Xdmf GlobalID AttributeType: Besides not being read in as idtype, a Clip filter removes the GlobalID attribute from the data set. Attached is a simple XML example adapted from the Xdmf source data sets,

[Paraview] Creating Animations in Paraview, where's the Animation Inspector

2010-04-19 Thread Olumide
I'm looking to create animations of datasets in Paraview by settig keyframes, and the doc mentions the Animation Inspector (under the view menu), but I can't find such an inspector. Can someone please give me any pointers? Thanks, - Olumide ___

Re: [Paraview] Creating Animations in Paraview, where's the Animation Inspector

2010-04-19 Thread David Doria
On Mon, Apr 19, 2010 at 2:46 PM, Olumide 50...@web.de wrote: I'm looking to create animations of datasets in Paraview by settig keyframes, and the doc mentions the Animation Inspector (under the view menu), but I can't find such an inspector. Can someone please give me any pointers?

Re: [Paraview] Extra camera reset in python macro

2010-04-19 Thread Eric E. Monson
Hey Pat, I just ran up against this same problem, but with my evidently sieve-like brain I totally forgot that you had told me the answer less than two months ago... I think something really needs to be done about the first Render() causes a camera reset default. I was telling my users how

Re: [Paraview] Use existing texture map for 3D surface

2010-04-19 Thread Olumide
Eric, I too am interested in texture mapping a 3d mesh object (having texture coordinates). How to I use the script you provided? In addition, I know the mesh can be in PVD format, but how do I specify the texture coordinates as well as the texture? Thanks, - Olumide # SCRIPT #

Re: [Paraview] Extra camera reset in python macro

2010-04-19 Thread pat marion
We could add a call such as 'DisableResetCameraOnFirstRender()' to the top of all trace scripts. Or I could add the flag to the view constructor- view = CreateRenderView(ResetCameraOnFirstRender=False). My first preference would be to just get rid of the reset camera behavior. I'd have to

Re: [Paraview] Creating Animations in Paraview, where's the Animation Inspector

2010-04-19 Thread Olumide
I'm running Paraview 3.8.0 (RC1). I've found the Animation View and I'm trying to figure out how it works. On a not too unrelated note, is it possible to use the Record Test Tool feature to record a work session so that it can be rendered out as an animation? Thanks, - Olumide

Re: [Paraview] trouble reading in netCDF file

2010-04-19 Thread Moreland, Kenneth
I don't really understand this description, but I can say with confidence that the netCDF reader will not read this convention. The CF convention does not support unstructured triangular grids (or any unstructured grids, for that matter). The (general) netCDF reader knows how to read 1-, 2-,

Re: [Paraview] Extra camera reset in python macro

2010-04-19 Thread Eric E. Monson
Yeah, that's a tough call... One issue is that with VTK you don't _have_ to call ResetCamera() most of the time for simple visualizations, so it may be that Berk's worry about newbie usage may come up off and on if people coming from VTK to ParaView are used to that behavior. I guess,

Re: [Paraview] Python state trace w/glyphs not working

2010-04-19 Thread pat marion
Pushed the fixes to git. Here is python macro I've been using to test the trace state. I add this to the macro toolbar so I can run it with one click. It does a trace state, clears all the sources views, then executes the trace to restore your state. This means you can click the button at any

Re: [Paraview] Accelerated volume rendering in 3.8.0-RC1?

2010-04-19 Thread Moreland, Kenneth
BTW, the Projected tetra and HAVS algorithms are, and always have been, GPU hardware accelerated. -Ken On 4/19/10 6:57 AM, David E DeMarle dave.dema...@kitware.com wrote: The new GPU accelerated volume rendering algorithm is only for Image Data. Your data must be unstructured, because you

Re: [Paraview] Use existing texture map for 3D surface

2010-04-19 Thread Eric E. Monson
Hey Olumide, Well, this script works for taking two attribute arrays which contain the U and V coordinates for the texture maps and puts them together into a single two-component array, adds that array as a new vector attribute of the polydata, and then tells the system that this array should

Re: [Paraview] trouble reading in netCDF file

2010-04-19 Thread Joel Culina
Well, typing ncdump -h file, I get (note last line): // global attributes: :title = Scotia Fundy Maine (Tidal Power) case ; :institution = School for Marine Science and Technology ; :source = FVCOM_2.6 ;

Re: [Paraview] Accelerated volume rendering in 3.8.0-RC1?

2010-04-19 Thread Xunlei Wu
Thanks, Ken. That's good to know. I always thought Tetra and HAVS are only CPU based. And is there a way to convert my structured grid data to image data in order to enable other accelerated rendering? Best, xunlei On 4/19/2010 5:37 PM, Moreland, Kenneth wrote: BTW, the Projected tetra and HAVS

Re: [Paraview] Use existing texture map for 3D surface

2010-04-19 Thread Olumide
Hi Eric, Thanks for the example. I've textured my very first sphere :) I've taken another look at the VTK file format and I now realize that it is possible embed extra scalar (UV) PointData information in a VTK/VTP file (I'm a novice, but I'm learning). I've got a mesh with texture

[Paraview] Fullscreen Screenshot/Animation

2010-04-19 Thread Olumide
Hi - Now that Paraview has a fullscreen feature. Is it possible to save a screen shot or export animations at fullscreen resolution? Thanks, - Olumide ___ Powered by www.kitware.com Visit other Kitware open-source projects at