[Paraview] Event triggered by cell/point array status change?

2009-06-28 Thread Sven Buijssen
Hi, Could someone please tell what the name of the event is that is triggered in ParaView (top of cvs build) when the cell/point array status (properties tab of the object inspector) is changed after a file has been initially loaded and one hits the "Apply" button again? It's neither RequestData

Re: [Paraview] Event triggered by cell/point array status change?

2009-06-29 Thread Sven Buijssen
Utkarsh Ayachit wrote: > Are you sure you are calling this->Modified() in the callback in your > reader where the array status is being set? Thanks a lot for the hint! In the vtkXMLReader class I found everything I needed to set up the missing callback in my reader. Now, my GMV file format reader

[Paraview] Problem compiling ParaView CVS since 2009/07/22 20:37:00 CEST on SLES 10.2

2009-07-29 Thread Sven Buijssen
Hi, I'm wondering if anyone else is having problems compiling ParaView from CVS on SuSE Linux Enterprise Server 10 Service Pack 2 since the commit with ID t8b2Z3fhip0uNJWt that occurred at 2009/07/22 20:36:16 CEST On my SLES 10 SP2 system cmake 2.6-patch 4, GNU make 3.80, Qt 4.5.2, GNU binutils 2

Re: [Paraview] Problem compiling ParaView CVS since 2009/07/22 20:37:00 CEST on SLES 10.2

2009-07-29 Thread Sven Buijssen
ginal Message - From: Utkarsh Ayachit To: Sven Buijssen CC: paraview@paraview.org Sent: Mittwoch, 29. Juli 2009 18:54:15 Subject: [Paraview] Problem compiling ParaView CVS since 2009/07/22 20:37:00 CEST on SLES 10.2 > Try updating. A bug was introduced in getClassInfo() that resulted in > stac

[Paraview] Linking against static builds of FFMPEG fails since cvs up -D'2009-07-31 16:52:02 CEST'

2009-08-09 Thread Sven Buijssen
Hi, I'm wondering if anyone else noticed problems compiling ParaView from CVS while setting -DVTK_USE_FFMPEG_ENCODER:BOOL=ON and using static builds of http://www.vtk.org/files/support/ffmpeg_source.tar.gz since the commit with ID FWQft1X9tt8TgSXt that occurred between 2009/07/31 16:52:47 CEST and

Re: [Paraview] Linking against static builds of FFMPEG fails since cvs up -D'2009-07-31 16:52:02 CEST'

2009-08-10 Thread Sven Buijssen
Hi, I found a possible cure. I'm not sure, though, about side effects it may cause w.r.t. what has been the intention of the changes made with commitid FWQft1X9tt8TgSXt, discussed in vtk-dev thread #Use LINK_INTERFACE_LIBRARIES for VTK libs" (http://www.vtk.org/pipermail/vtk-developers/2009-July/0

[Paraview] How to get a smooth clipping at the boundary

2009-08-13 Thread Sven Buijssen
Hi, I have a 2D data set with one scalar value. When I apply the "Warp by Scalar" filter with default settings and then a clipping filter of type box with scale settings being 1/1/0.3 and "inside out" checked I end up with a scenery with nice hills, except at the boundary. There, the hills are cho

Re: [Paraview] How to get a smooth clipping at the boundary

2009-08-13 Thread Sven Buijssen
Hi Ken, Ah, I have been thinking too complicated. That works indeed. Thank you, Sven Kenneth Moreland wrote: > You might be able to solve the problem by clipping the geometry multiple > times with planes instead of using the box. > > -Ken > > > On 8/13/09 10:46 AM, &

Re: [Paraview] About on-line available binaries for next release

2009-08-28 Thread Sven Buijssen
Hi, Is there any news on an easier way to build plugins against the official releases? 4 months ago Berk mentioned those plans in a reply to a user posting here. The reason I'm asking is that I've been compiling the ParaView 3.6.1 sources over and over again in the last days on a variety of 64-bi

Re: [Paraview] About on-line available binaries for next release

2009-09-01 Thread Sven Buijssen
Hi Burlen, > your link errors may be because the released binary is built with > VTK_USE_64BIT_IDS set OFF. While your local compile is built with it > set ON. Try setting it to OFF. Thanks a lot! You pinpointed the source of my troubles. VTK_USE_64BIT_IDS needs to be explicitly set to OFF, ind

Re: [Paraview] state file with StreamTracer has problem

2009-09-04 Thread Sven Buijssen
Hi Jean, I can reproduce the problem and it is familiar. I came across it in September 2007 with ParaView 2.6.2, but somehow failed to file a bug report back then. I wasn't aware that the problem still persists in current versions, though. Sven - Original Message - From: "Jean M. Favre"

Re: [Paraview] Transform Filter Loses Colors

2009-09-11 Thread Sven Buijssen
Hi David, You can use a Programmable Filter to convert the data back to unsigned char to work around the problem for now: --- inp = self.GetInput() out = self.GetOutput() numCells = inp.GetNumberOfCells() data = inp.GetCellData().GetArray("Colors") newData = vtk.vtkUnsignedCharArray() newData.

Re: [Paraview] Transform Filter Loses Colors

2009-09-11 Thread Sven Buijssen
Actually, the loop got accidentally more complicated than necessary: --- inp = self.GetInput() out = self.GetOutput() numCells = inp.GetNumberOfCells() data = inp.GetCellData().GetArray("Colors") newData = vtk.vtkUnsignedCharArray() newData.SetName('Colors_converted') newData.SetNumberOfCompone

Re: [Paraview] Segfault on exit()/quit()/raise SystemExit in python script

2009-10-09 Thread Sven Buijssen
Hi, In the meantime I found out that the segfault only happens when pvpython is being run inside a NX session (see http://www.nomachine.com/). So, most likely there is nothing wrong with ParaView, I simply need an additional installation compiled with Mesa instead of OpenGL, to be used in NX sessi

Re: [Paraview] Communication from Python to own C++ reader

2009-10-15 Thread Sven Buijssen
Hi Fabian, It should be possible to hide CurrentPolledStep from the GUI by adding this to your XML file (didn't test it, though): Look at ParaView3/Servers/ServerManager/Resources/readers.xml for examples where to put it exactly. Your problem with r.CurrentPolledStep n

Re: [Paraview] Animating legacy VTK file series

2009-10-15 Thread Sven Buijssen
Hi Song, Don't name your files simply 00X.vtk. Add a prefix, e.g. foo00X.vtk. Then the globbing works and your files will show up in the file dialog as foo..vtk. Sven - Original Message - From: song zhen To: paraview@paraview.org Sent: Freitag, 16. Oktober 2009 00:24:34 Subject: [Paravi

Re: [Paraview] particle tracing

2009-10-15 Thread Sven Buijssen
Leo, Apply a TemporalCache filter first to your data before applying the ParticleTracer filter. The warning "vtkTemporalDataSet not fully supported." will still be issued for every file of your file series, but at least the ParticleTracer will generate particles. Without the TemporalCache in bet

Re: [Paraview] extracting line data

2009-10-19 Thread Sven Buijssen
Hi, I think it can be done by applying a Calculatur filter first to store the coordinates as an additional point dataset (named e.g. 'xyz'), then applying the original Plot over Line filter and finally a Programmable Filter with the following code: inp = self.GetInput() filename = "foo.csv" FILE

Re: [Paraview] Displaying points and normals

2009-10-29 Thread Sven Buijssen
Hi Christoph, Load the CSV data, use a TableToPoints filter, then a Calculator filter to combine the last three fields to a vector (operation: "(iHat*Field 3)+(jHat*Field 4)+(kHat*Field 5)") and finally apply a Glyph filter with Glyph type Arrow. Sven - Original Message - From: Christoph

Re: [Paraview] "Syntax error found parsing header file" while compiling plugin

2009-10-31 Thread Sven Buijssen
Hi David, (That's a classic one and something else for the wiki.) Just wrap all variable declarations involving vtkSmartPointer up into a //BTX ... code ... //ETX comment. To hide that particular setting from the parser in vtkWrapClientServer which does not handle well those declarations

Re: [Paraview] "Syntax error found parsing header file" while compiling plugin

2009-10-31 Thread Sven Buijssen
Hi David, >> (That's a classic one and something else for the wiki.) >> Just wrap all variable declarations involving vtkSmartPointer up into a >> //BTX >> ... code ... >> //ETX >> comment. To hide that particular setting from the parser in >> vtkWrapClientServer which does not handle well

Re: [Paraview] "Syntax error found parsing header file" while compiling plugin

2009-10-31 Thread Sven Buijssen
David, > > Add > > vtkTypeRevisionMacro(vtkICPFilter, vtkPolyDataAlgorithm); > > to your vtkICPFilter.h. > > > > That did the trick. However, now that it compiles correctly, when I load > the plugin in Paraview it has a yellow warning symbol (! in a triangle) > and it says: > >

Re: [Paraview] Ordered xml inputs?

2009-11-04 Thread Sven Buijssen
David, I had a short glance at your code and there are two things I find intriging: 1) Your XML mixes the port_index="." and helper method approach for property SourceDataSet: You'll have to change the command to "AddInputConnection", in particular because method AddSourceConnection is m

Re: [Paraview] How PV detects valid file formats?

2009-11-10 Thread Sven Buijssen
Fred, What is the exact file name? It might be a variant of bug 9270 or 9452. Does it help to move the file to a different directory? Sven - Original Message - From: Fred Fred To: jfa...@cscs.ch CC: paraview@paraview.org Sent: 11/10/09 17:35:04 Subject: [Paraview] How PV detects valid f

Re: [Paraview] loading multiple files in one go

2009-11-11 Thread Sven Buijssen
Johan, The procedure will actually only work if you apply the attached patch first and recompile PV from CVS. (Because in current CVS the Tecplot reader is not called as a subproxy of vtkFileSeriesReader, but directly.) Sven - Original Message - From: Hom Nath Gharti To: Johan de Koni

Re: [Paraview] Rendering bug?

2009-11-11 Thread Sven Buijssen
Hi Ken, Thanks for the elaborate explanation. I'll think of something. Sven - Original Message - From: "Moreland, Kenneth" To: "Sven Buijssen" , "paraview@paraview.org" Sent: 11/11/09 15:48:59 Subject: [Paraview] Rendering bug? > I do not thin

Re: [Paraview] plot a field on a deformed domain?

2009-11-18 Thread Sven Buijssen
Chong Luo Basically, you are looking for the Append Attributes filter. There is just the small difficulty that both your data sets provide a point data set with the same name. The Append Attributes filter does not handle that case particularly well, it discards the second point data set. To work a

Re: [Paraview] 3D vector & contour plots from a set of scattered point

2009-11-28 Thread Sven Buijssen
Nima, Your first question has been discussed last month on this list, have a look at http://markmail.org/message/36223zg4uleibiyj. David found the time to put the question in FAQ style into the ParaView wiki. So, you can also look at http://www.paraview.org/Wiki/Display_points_and_normals_from_a_p

[Paraview] cpack not adapted yet to branding commit?

2009-12-04 Thread Sven Buijssen
Hi, I noticed that since Utkarsh branding commit the tar/rpm-packages created by means of 'make package'/'cpack -G TGZ'/... at the end of a nightly automatic build are considerably smaller, 30-50% depending on the architecture. In particular, they do not contain a paraview binary any more, but in

Re: [Paraview] using integrate variables between two filters

2009-12-09 Thread Sven Buijssen
Hi Michael, Your first question has been discussed before, e.g., here: http://markmail.org/message/jon3wyz3ve2rzza5 Regarding your second question you're looking for the ParaView filter Resample with Dataset. It takes two inputs which will be your coarse and refined grid. See the filter's help fo

Re: [Paraview] Multiple input port filters: cannot set the second input

2009-12-09 Thread Sven Buijssen
Hi, I can reproduce the behaviour Jérôme described with some of my nightly builds. Load the state attached, select RandomVectors and apply StreamTracerWithCustomSource filter. As Source try to select the PointSource. The GUI won't let you select it. Happens with a 32bit Linux build, a 64bit Linux

Re: [Paraview] cvs version of paraview not installing client

2009-12-10 Thread Sven Buijssen
Carrie, A similar question has been posted a week ago and yesterday. Please see http://www.paraview.org/pipermail/paraview/2009-December/014869.html and/or http://www.paraview.org/pipermail/paraview/2009-December/014931.html Summarizing them: 'make install', 'make package', 'cpack -G ...' are cur

Re: [Paraview] (no subject)

2009-12-16 Thread Sven Buijssen
Hi Adriano, Sounds familiar to me. I reported this a while back to Mantis: http://www.paraview.org/Bug/view.php?id=9549 Sven - Original Message - From: "Adriano Gagliardi" To: "'ParaView'" Sent: Mittwoch, 16. Dezember 2009 10:23:25 Subject: [Paraview] (no subject) > Hi, > > Can anyone

Re: [Paraview] About on-line available binaries for next release

2010-01-04 Thread Sven Buijssen
with something like: >> nm -C /my/path/libvtkFiltering.so | grep vtkUnstructuredGrid::InsertNextCell >> if your version demangles to long and the binary version demangles to int >> then this is your issue. >> >> Burlen >> >> Sven Buijssen wrote: >>> &

Re: [Paraview] Tensor visualisation using hedgehog vectors (glyphs)

2010-02-04 Thread Sven Buijssen
Jacob, Have a look at http://www.paraview.org/Wiki/User_Created_Plugins and download the Superquadric Tensor Glyph Filter. The zip file contains two sample files with tensors (VTK legacy format). If you compile ParaView from source, you'll be able to compile the plugin as well which allows to visu

Re: [Paraview] SuperquadricTensorGlyph usage question

2010-02-11 Thread Sven Buijssen
Hi Ricardo, I'm not familiar with the EnsightGold format. But have a look at the two example files that ship with the plugin: tensors.vtk and tensors8.vtk. Both get the filter enabled, tested with CVS HEAD. Sven Ricardo Reis wrote, On 12.02.2010 01:32: > > Hi all > > I've managed to compil

Re: [Paraview] SuperquadricTensorGlyph usage question

2010-02-12 Thread Sven Buijssen
Ricardo, Try experimenting with the plugin's server manager XML. Currently, it states I haven't tested what will happen if you alter that to 6, but you might want to give it a try. Sven Ricardo Reis wrote, On 12.02.2010 12:04: > On Fri, 12 Feb 2010, Sven Buijssen wrote: >

Re: [Paraview] SuperquadricTensorGlyph usage question

2010-02-12 Thread Sven Buijssen
if you alter that to 6, but you might want > to > give it a try. > > Sven > > > > Ricardo Reis wrote, On 12.02.2010 12:04: >> On Fri, 12 Feb 2010, Sven Buijssen wrote: >> >>> Hi Ricardo, >>> >>> I'm not familiar with the Ensig

Re: [Paraview] image (2d) in a 3D plot

2010-02-16 Thread Sven Buijssen
Rafael, Just close the 2D view after importing the image, switch back to a 3D view and turn on visibility of the imported image by clicking on the grayed out eye next to it in the pipeline browser. You might have to reset the camera, though, to auto-adjust zoom etc. in order to be able to see the

Re: [Paraview] Displaying point coordinates

2010-02-24 Thread Sven Buijssen
Hi Christoph, Use the calculator to add the coordinates as a point data array (function: coords, result array name: coords). Then go to Selection Inspector, Display Style, Point Label and select this additional data array 'coords' from the drop-down list 'label mode'. Hope this helps. Sven Chr

Re: [Paraview] How to color by Cell Data

2010-03-01 Thread Sven Buijssen
Hi, I tested my nightly clean builds of ParaView CVS HEAD (pulled via git) + Qt 4.5.2 on * SuSE Linux Enterprise Server 10 SP2 * Ubuntu 9.10 Server 64bit * openSuSE 10.2 64bit * openSuSE 11.1 32bit * SPARC Solaris 10 64bit (PV CVS 2010-02-25, nothing newer as I'm having some trouble with Mesa sin

Re: [Paraview] Development Install Tree

2010-03-15 Thread Sven Buijssen
Utkarsh, I can confirm that help for sources/filters/readers/writers works like a charm again. Thanks Sven Utkarsh Ayachit wrote, On 15.03.2010 15:51: > Sven/Mark, > >> I'm reaching (or missing it) via the Help (F1) and trying to get >> information on the sources, filters or readers as illustr

Re: [Paraview] Problem compiling plugin for using with ParaView 64

2010-03-26 Thread Sven Buijssen
Hi Rafael, Did you set VTK_USE_64BIT_IDS to OFF? If not that might very well explain your problem on 64 bit. See also http://markmail.org/message/xgjbz5rlwsedkpgo Sven Rafael Castaneda wrote, On 26.03.2010 14:40: > Hey all, > > I have programmed a plugin, and I want to get it to work with Para

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 ge

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

2010-04-20 Thread Sven Buijssen
Hi Paul, > Sven Buijssen wrote: >> (off the list for the moment while discussing some technical details) >> > [taking back to the list] >> I managed to compile PV 3.8 RC1 >> (http://www.paraview.org/files/v3.8/ParaView-3.8.0-RC1.tar.gz) on a >> 32bit ope

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

2010-04-20 Thread Sven Buijssen
ed > object file: No such file or directory Sven Utkarsh Ayachit wrote, On 20.04.2010 17:02: > Sven, > > Attached is a patch that may resolve this issue. Can you give it a try? > > Thanks > Utkarsh > > On Tue, Apr 20, 2010 at 7:49 AM, Sven Buijssen > wrote: >

Re: [Paraview] [Fwd: CMake Error at Utilities/VTKClientServer/vtkClientServer.cmake]

2010-04-23 Thread Sven Buijssen
Hi Mark, You're git submodule Utilities/Xdmf2 is too recent. Let me guess. You checked out ParaView from git like this: % git clone git://paraview.org/ParaView.git % git submodule init % git submodule update Then, for some reason, you did something similar to % cd Utilities/Xdmf2/ % git branch

[Paraview] git master and latest ffmpeg

2010-04-29 Thread Sven Buijssen
Hi, When upgrading ffmpeg to svn22965 or newer, ParaView git master does not compile against it any more. The ffmpeg commit in question is revision 22965: > commit 346f2bc2656e7f23b7fbf14563c017b49108d888: > Author: rbultje > Date: Mon Apr 26 13:36:17 2010 + > > Fix broken 32-bit clipp

Re: [Paraview] git master and latest ffmpeg

2010-04-29 Thread Sven Buijssen
Michael, > The problem with ffmpeg IMHO is that it is a moving target (as is also > declared on their website). It is almost impossible for ParaView to keep up > and just arbitrarily picking any revision is no solution either, because that > will cause a lot of trouble for packagers. It's just

Re: [Paraview] git master and latest ffmpeg

2010-04-29 Thread Sven Buijssen
17:46: > FYI, It is on my todo list to > > 1. restore dash16 to build VTK against the old FFMPEG > 2. potentially setup a new dashboard that builds against at least a more > recent version. > > On Thu, Apr 29, 2010 at 11:38 AM, Sven Buijssen > mailto:sven.buijs...@tu-dortmund

Re: [Paraview] PV 3.4.0 ruler question

2010-05-05 Thread Sven Buijssen
Stephen, That's a known issue with PV 3.4.0. See http://www.paraview.org/Bug/view.php?id=8637 You might want to consider upgrading to PV 3.6.2 or 3.8 RC2. Sven Stephen Wornom wrote, On 05.05.2010 11:24: > I want to calculate the distance between two points in the x-direction > point 1= 0.5 > p

Re: [Paraview] Problems running pvserver in parallel

2010-05-26 Thread Sven Buijssen
Hi Natalie, The error is meant to tell you that there is already some process using port 1. Given that you seem to be running ParaView on Linux you can confirm this by $ netstat -na | grep 1 or alternatively $ lsof -i:1 The latter will tell you the name of the process that is blocking

Re: [Paraview] plot over line question (save data)

2010-05-28 Thread Sven Buijssen
Stephen, There is no built-in solution as far as I know, but the following pipeline may serve as a guideline: * Apply ’Extract Block’ and ’Merge Blocks’ filter for a multi-block data set * Apply Programmable Filter with the following Python source code: inp = self.GetInput() filename = "foo.csv"

Re: [Paraview] Building 3.8.0

2010-05-29 Thread Sven Buijssen
Hi Bastian, BastiL2001 wrote, On 29.05.2010 11:33: > I have build 3.8.0 (source from paraview.org) yesterday and ran into some > minor issues: > > - I hat do set LD_LIBRARY_PATH to both my MPI and QT (I have multiple QTs and > MPIs installed on this system). RPATH is turned off. > - Afterwards

Re: [Paraview] white legend using vtkGL2PSExporter

2010-06-19 Thread Sven Buijssen
Hi Martin, No, it's not due to colors still being interpolated. I tracked the very issue down myself a year ago or so. What you are seeing happens since commit 8fe6d5fa88c7ecbb1420776850f176690b504c71 Author: Ken Moreland Date: Tue Nov 25 09:28:25 2008 -0500 ENH: add tickmarks to scalar bar

Re: [Paraview] Text position not saved in State File

2010-06-22 Thread Sven Buijssen
Hi Richard, See http://paraview.org/Bug/view.php?id=8789 and http://paraview.org/Bug/view.php?id=10521 It's fixed in git master, not yet pushed to the release branch for PV 3.8.1, though. Sven Richard GRENON wrote, On 22.06.2010 17:46: > Hello. > > Bug with Text sources in PV 3.8.0. > When

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 12:18:

Re: [Paraview] Export snapshots in vectorized format (eps pr pdf)

2010-07-17 Thread Sven Buijssen
Hi Mohamad, That's a question that has come up earlier. Summarizing it is possible to get vector graphics postscript output from ParaView, but it is not straight forward, you'll have to compile ParaView yourself and there are shortcomings. You'll find the following thread helpful: http://mark

Re: [Paraview] pvbatch (3.8.0) rendering through OSmesa does not work on multiple nodes

2010-09-16 Thread Sven Buijssen
Hi, I've had the exact same problem last week with ParaView git/master on Linux x86_64 with Mesa 7.8.2, having applied the patch you mentioned to the Mesa 7.8.2 sources. (It's also the only patch present in the Mesa git master for that particular bug, https://bugs.freedesktop.org/show_bug.cgi?id=1

Re: [Paraview] ANN: ParaView 3.8.1 Available for download

2010-10-07 Thread Sven Buijssen
Hi Alexey, The dependency is inherited. As stated in the wiki (http://www.paraview.org/Wiki/ParaView:Plugin_Deployment_with_Development_Installs) you'll need to provide your own installation of Qt 4.6.2 - but not necessarily using the path used at Kitware on their build hosts. I typically fix up

Re: [Paraview] ParaView 3.8.1 Available for download

2010-10-07 Thread Sven Buijssen
2 (0x7f9a2d655000) > > and if I do, export LD_LIBRARY_PATH=/usr/lib/paraview-3.8/ > > then cmake is broken ... :( > >>cmake > /usr/bin/cmake: /usr/lib/paraview-3.8/libstdc++.so.6: version `GLIBCXX_3.4.11' > not found (required by /usr/bin/cmake) > /u

Re: [Paraview] Converting an image from float to unsigned char

2010-12-10 Thread Sven Buijssen
Hi David, May I remind you of a thread you started last year? It shouldn't be too hard to adapt the python code presented in one of the answers to your current use case: http://markmail.org/message/x2qs2jn6ltaw5v6u Sven David Doria wrote, On 10.12.2010 18:25: > I have a mhd image of floats that

Re: [Paraview] 3.10 Segfault XDMF

2011-03-10 Thread Sven Buijssen
Hi Tim, Unfortunately, XDMF_WRAP_PYTHON got disabled last minute because it currently prevents being able to run things like cpack -G TGZ --config Applications/ParaView/CPackParaViewConfig.cmake See http://paraview.org/gitweb?p=ParaView.git;a=commit;h=7ac1f7511e3fd1836b0c918812a29222c0ceeedf

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-30 Thread Sven Buijssen
Ubuntu 10.04 64-bit, gcc 4.4.3 Sven Sebastien Jourdain wrote, On 03/30/11 15:02: > Hi Sven, > > I just give a try with the archive you provided and I get the expected > result without any crash. > On which system did you get that failure ? > On Tue, Mar 29, 2011 at 7:17

Re: [Paraview] export to vectorial image format

2011-03-31 Thread Sven Buijssen
Hi, I happen to have a small patch for the git master branch that adds vector graphics output (EPS, PS and SVG) to the Save Screenshot dialog and uses vtkGL2PSExporter as a backend, too. Actually, it's just an updated version of the patch for this matter I posted on this list back in 2007. But as

Re: [Paraview] visualizing individual pieces

2011-04-07 Thread Sven Buijssen
Bart, Apply a Connectivity filter, followed by a threshold filter to limit display to an individual or several selected pieces. Sven Bart Vandewoestyne wrote, On 04/07/11 10:47: > Hello list, > > I have the following UnstructuredGrid file: > > http://www.kuleuven-kortrijk.be/~bartv/HxHyHzExEy

Re: [Paraview] visualizing individual pieces

2011-04-07 Thread Sven Buijssen
Bart, There is nothing that bars you from applying multiple threshold filters to the connectivity filter's output. This way you can select region ID 1 plus the range 3 to 4. Sven Bart Vandewoestyne wrote, On 04/07/11 11:45: > On Thu, Apr 07, 2011 at 11:01:09AM +0200, Sven Buijss

Re: [Paraview] PavaView-QT

2011-04-14 Thread Sven Buijssen
Hi, You mentioned you're compiling on SunOS. So do I on a regular basis, without problems. Could you elaborate a bit on the SunOS version and the compiler you are using (vendor, version, 32/64 bit)? Sven D-Durga-Prasad wrote, On 04/14/11 16:26: > Hello All, > > I have generated "makefiles" wit

Re: [Paraview] PavaView-QT

2011-04-14 Thread Sven Buijssen
/11 16:37: > Hi, > when I do uname -a I get the following output. > SunOS sun-sms 5.10 Generic_118844-26 i86pc i386 i86pc > > How did you manage QT? > > Thanx. > > On Thu, Apr 14, 2011 at 8:04 PM, Sven Buijssen <mailto:sven.buijs...@tu-dortmund.de>> wrote: > >

Re: [Paraview] Issue with Slice filter & plane source

2011-04-19 Thread Sven Buijssen
Hi Adriano, I recall that one. See http://www.paraview.org/Bug/view.php?id=9984 Got fixed in 3.8.0. Sven Adriano Gagliardi wrote, On 04/19/11 13:00: > > I've come across a strange issue with the Slice filter. Admittedly, I am > using an older version of ParaView (3.6.2) but, before I go throug

Re: [Paraview] plugin mismatch?

2011-04-28 Thread Sven Buijssen
Hi, Being the one who uploaded the plugin (having added a mere frosting to the servermanager XML that got posted here in 2009) I'd like to add the following: The plugin is merely a convenient way to use vtkTensorGlyph.cxx from within ParaView, but does not add additional features. As such it does

Re: [Paraview] export to vectorial image format

2011-05-02 Thread Sven Buijssen
;>> Would it be possible to generate such an image by first exporting to a >>>>> 3D format (like POV or X3D) and then converting the scene to a >>>>> vectorial format using another application? any suggestion ...? >>>>> >>>>> Best, &

Re: [Paraview] paraview movie frames/second

2011-05-27 Thread Sven Buijssen
Hi Jeremy, 32 frames per second should work. See http://markmail.org/message/3yaw4lnhutnkksyl and the ParaView bug report at http://www.paraview.org/Bug/view.php?id=11923 Sven Jeremy McCaslin wrote, On 27.05.2011 22:55: > Hello, > > Is there an upper bound to the number of frames per second th

Re: [Paraview] use of global variables

2011-10-09 Thread Sven Buijssen
Felipe, The Calculator filter has no support for field data currently, see e.g. http://www.paraview.org/Bug/view.php?id=5626. Neither it is the only filter that does not pass field data, see e.g. http://www.paraview.org/Bug/view.php?id=10787. For operations involving field data, like plotting fie

Re: [Paraview] compiled superquadric tensor glyph plugin for Win7

2015-05-11 Thread Sven Buijssen
Hi Constantin, I wrote said plugin originally and added it to the wiki a few years ago. The last version I compiled for Windows 7 was for ParaView 3.14.1 32bit. Not sure whether that build would be suitable for you. Especially since the implementation of the algorithm is now faster and a few small

Re: [Paraview] eps outputting in paraview

2015-05-11 Thread Sven Buijssen
Hi Zuoguang, Try unchecking the checkbox "Interpolate Scalars Before Mapping" in the Properties tab before exporting to EPS. (It is an advanced property, either search for its name or toggle the wheel next to the search box to have it show up.) Sven 付作光 schrieb am 09.05.2015 um 05:37: > Dear Da

Re: [Paraview] CleantoGrid tolerance parameter for merging points

2015-05-11 Thread Sven Buijssen
Hi Patrick, Patrick Brockmann schrieb am 26.04.2015 um 19:17: > Hi, > > I like to see some points of an untsructured grid be merged ? > Some points have coordinates equal to 1E-14, others 0. > > When applying the CleantoGrid filter there is no entries > to specify a tolerance parameter. Inter

Re: [Paraview] Compiling Paraview 3.12

2012-02-06 Thread Sven Buijssen
Christian, Christian Wohlschlager wrote, On 06.02.2012 08:36: > this is the error message i got: > > > [ 89%] Built target pqCore > > make[2]: *** No rule to make target > `Qt/Components/../../../../../home/edvz/k00018j/apps/ParaView-3.12.0/Qt/Components/Resources/XML/Placeholder.xml', > needed

Re: [Paraview] Add overlay logo

2012-02-22 Thread Sven Buijssen
Hi Menno, Add a plane via Sources->Plane, position and scale it to your liking, then go to the Display tab and select your PNG file from "Apply Texture - Load...". You may want to play with the Opacity and Lighting setting (same tab) afterwards if the logo is too bright/gray. Sven Deij, Menno w

Re: [Paraview] How to save data?

2012-05-26 Thread Sven Buijssen
Fred, Are you sure you really used the file name "myfile.csv" (and did not alter that part of the error message for your posting)? Sounds a bit like http://www.paraview.org/Bug/view.php?id=12181, especially because you're still using ParaView 3.10.1 Sven Fred Fred wrote, On 26.05.2012 11:07: >

Re: [Paraview] show only edges?

2012-05-29 Thread Sven Buijssen
Nico, I suggest you apply the filter vtkPolyDataSilhouette and play with its settings. The XML plugin to expose this VTK filter in the ParaView GUI is available as attached file for bug 12619 (http://www.paraview.org/Bug/view.php?id=12619). Sven Nico Schlömer wrote, On 05/29/12 15:50: > Hi all

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2012-06-01 Thread Sven Buijssen
Hi Sebastien, I did come across another regression which I traced back to the collaboration merge 14 months ago. Maybe you can assign someone to http://www.paraview.org/Bug/view.php?id=13215, as I can not in Mantis having merely a reporter status? Thanks, Sven Sebastien Jourdain wrote, On 03/28

Re: [Paraview] Animating Streamlines

2012-06-15 Thread Sven Buijssen
Dennis, Does Jean's suggestion, http://markmail.org/message/ms57z7jjubh2pzjg, help? Sven RVA Developer wrote, On 06/15/12 15:40: > Hello, > > Is there any way to animate streamlines natively in ParaView? I have been > "playing" with the software for a little while and see no apparent way of >

[Paraview] Reader plugins in static builds ignored?

2012-11-23 Thread Sven Buijssen
Hi, I'm seeing that with static builds of ParaView 3.14.1 and git/master reader plugins can be successfully built along with ParaView, but not actually accessed from the GUI: AdiosReader, AnalyzeNIfTIReader, H5PartReader as well as custom readers do get statically linked into e.g. the paraview bi

Re: [Paraview] Reader plugins in static builds ignored?

2012-11-23 Thread Sven Buijssen
for this:http://paraview.org/Bug/view.php?id=13674. > Thanks for catching this issue. If you could test this out, that'd be > great. > > Utkarsh > > On Fri, Nov 23, 2012 at 3:27 PM, Utkarsh Ayachit > wrote: >> Good catch! I am looking into it. >> >> Utk

Re: [Paraview] Exporting to vrml with python in 3.98 or 3.14.1

2013-01-17 Thread Sven Buijssen
Raphael, You did not specify any input for the VRML exporter. Try using vrml.SetView(RenderView) vrml.Write() at the end of your script. Sven Raphael Münster wrote, On 17.01.2013 19:50: > Hello, > > I am trying to export data to vrml with a Python script in 3.98 and > 3.14.1, but no vrml

Re: [Paraview] Merging very close Points

2013-09-02 Thread Sven Buijssen
Hi Yoshimi, The Clean to Grid filter internally invokes vtkCleanUnstructuredGrid which can merge duplicate points, but they need to have coincident coordinates. In contrast, very old versions of ParaView also merged very close points, but that is not true any more, see closed issue http://www.para

Re: [Paraview] Text position not saved in state file with PV 4.1.0

2014-02-25 Thread Sven Buijssen
dy pointed this problem on june 22, 2010 with PV 3.8.0, see > http://markmail.org/message/mupbmolmfv26tjwl > > Sven Buijssen answered that this was a known bug: > >> See http://paraview.org/Bug/view.php?id=8789 and >> http://paraview.org/Bug/view.php?id=10521 >> >&

Re: [Paraview] Slice on arbitrary surface

2015-02-06 Thread Sven Buijssen
://www.dropbox.com/s/f2ym5jva70jlcsc/simulations.zip?dl=0 > > Thanks a lot > > Ruggiero > > > > > On 6 February 2015 at 12:20, Sven Buijssen <mailto:sven.buijs...@tu-dortmund.de>> wrote: > > Ruggiero, > > I'd go with the filter "Resamp

Re: [Paraview] Slice on arbitrary surface

2015-02-06 Thread Sven Buijssen
Ruggiero, I'd go with the filter "Resample With Dataset": Load both input file and the intersecting surface, set the former as input and the latter as source for the filter. Disable visibility of the two input data sets afterwards. Hope that helps Sven Ruggiero Guida schrieb am 06.02.2015 um 05