[Paraview] 2D View for Slices and other filter

2012-04-09 Thread Fabian Braennstroem
Hello, is there an option to view slices in a 2D view? I am not able to find any. If not, are there any plans to integrate this? I think it would be a great feature... Best Regards Fabian ___ Powered by www.kitware.com Visit other Kitware

[Paraview] plotting vector contours (not just the magnitude)

2012-04-09 Thread leo paul
Hi, I am trying to plot a vector field and paraview either gives you plots for each of its components or its total magnitude. Is there any way i could have the 3 components listed in the vtk file and get it to plot out the vector contour. Iam not able to get the negative values for the field if I

Re: [Paraview] Qt QTWEBKIT library not found

2012-04-09 Thread Utkarsh Ayachit
Dave, do you have any insights for building Qt on mac with WebKit Support? Utkarsh On Sun, Apr 8, 2012 at 4:03 AM, Magician f_magic...@mac.com wrote: Utkarsh, I rebuilt Qt with -webkit option, but cmake still dumped same errors. My Qt source is:

Re: [Paraview] use the same scalar data to create contour and color the surface

2012-04-09 Thread Cory Quammen
On Sun, Apr 8, 2012 at 9:33 PM, Tom Schoenemann t...@indiana.edu wrote: Thanks Cory, I did not know about Load State!  My bad…  I was indeed able to load it. I still have problems with the data range being truncated, even if I do the calculator step on both files.  For example, on your

Re: [Paraview] Qt QTWEBKIT library not found

2012-04-09 Thread Michael Jackson
On OS X 10.6.8 with Xcode 3.x I use the following to build from source: ./configure -nomake demos -nomake examples -debug-and-release -shared -fast -exceptions -stl -no-qt3support -cocoa -arch x86 -arch x86_64 -arch ppc -sdk /Developer/SDKs/MacOSX10.5.sdk -largefile -prefix

Re: [Paraview] Qt QTWEBKIT library not found

2012-04-09 Thread David E DeMarle
I built the qt I used for the pv 3.14.x releases with: ./configure --prefix=/Source/Qt/4.6.4/install -no-audio-backend -no-dbus -no-javascript-jit -nomake demos -nomake examples -no-multimedia -no-openssl -no-phonon -no-xinerama -opensource -qt-libjpeg -qt-libtiff -qt-libpng -system-zlib -webkit

[Paraview] Cone as input and Sphere as output for plugin filter

2012-04-09 Thread Boettcher, Prof. Dr. Peter
Hi All I would like to implement a polydataalgorithm filter which takes a polydata as input (a cone), does some calculations and produces a sphere as output of the plugin algorithm. Unfortunately, instantiation of the sphere seems to be of a problem, as the output remains empty. This is

Re: [Paraview] Cone as input and Sphere as output for plugin filter

2012-04-09 Thread Moreland, Kenneth
Call sphere-Update() after SetRadius but before GetOutput. -Ken From: Boettcher, Prof. Dr. Peter boettc...@kleintierklinik.uni-leipzig.demailto:boettc...@kleintierklinik.uni-leipzig.de Date: Mon, 9 Apr 2012 15:37:55 +0200 To: paraview@paraview.orgmailto:paraview@paraview.org Subject: [EXTERNAL]

Re: [Paraview] 2D View for Slices and other filter

2012-04-09 Thread Utkarsh Ayachit
We are working on it. Expect an improved, more flexible 2D view in the next major release. Utkarsh On Mon, Apr 9, 2012 at 4:34 AM, Fabian Braennstroem f.braennstr...@gmx.de wrote: Hello, is there an option to view slices in a 2D view? I am not able to find any. If not, are there any plans to

Re: [Paraview] plotting vector contours (not just the magnitude)

2012-04-09 Thread Andy Bauer
If I understand correctly what you want, you can use the spreadsheet view to look at the vector component values. If you want to contour the sum of the vector components, use the calculator filter to do the sum and then you can contour a scalar value. Andy On Mon, Apr 9, 2012 at 6:22 AM, leo

Re: [Paraview] 2D View for Slices and other filter

2012-04-09 Thread Fabian Braennstroem
Great! Am 09.04.2012 16:14, schrieb Utkarsh Ayachit: We are working on it. Expect an improved, more flexible 2D view in the next major release. Utkarsh On Mon, Apr 9, 2012 at 4:34 AM, Fabian Braennstroem f.braennstr...@gmx.de wrote: Hello, is there an option to view slices in a 2D view? I

Re: [Paraview] Question on Information Objects

2012-04-09 Thread Joshua Murphy
Hello again! I just realized that I have a major typo in my first email… I say the excerpt is from getInformation… it is actually from RequestData()… Sorry for the confusion! :) -Josh From: Joshua Murphy joshua.mur...@lasp.colorado.edumailto:joshua.mur...@lasp.colorado.edu Date: Mon, 9 Apr

Re: [Paraview] Question on Information Objects

2012-04-09 Thread Burlen Loring
Hi Joshua, In your constructor you'd need to call this-SetNumberOfInputPorts(2); You'd need to override FillInputPortInformation(int port, vtkInformation *info) implement a switch on port number and do something like: 288 switch (port) 289 { 290 // Vector feild data 291

Re: [Paraview] Question on Information Objects

2012-04-09 Thread Joshua Murphy
Thanks! I will give this a try! :) Sorry for the crossed emails a minute ago! -Josh From: Burlen Loring blor...@lbl.govmailto:blor...@lbl.gov Date: Mon, 9 Apr 2012 12:34:02 -0600 To: Joshua Murphy joshua.mur...@lasp.colorado.edumailto:joshua.mur...@lasp.colorado.edu Cc: burlen

[Paraview] Python Script for Marking Points

2012-04-09 Thread Mohammad Mirzadeh
Hi, I'm a complete newbie when it comes to python scripting and need a little bit of help. I'm trying to debug a parallel code using paraview. I have an unstructured grid that I save as a legacy vtk file. In it, I save the grid information and also the processor id of each point. What I want to

Re: [Paraview] Question on Information Objects

2012-04-09 Thread Joshua Murphy
Hi Burlen, I think I am getting there, but I am having the following problem now.. The following snippet from my RequestData is causing a segfault… vtkInformation *outInfo2 = outputVector-GetInformationObject(1); vtkTable *MetaDataOutput =

Re: [Paraview] Question on Information Objects

2012-04-09 Thread Burlen Loring
Joshua, There was mistake in my previous post, you should override FillOutputInformation and set info-Set(vtkDataObject::DATA_TYPE_NAME(), vtkTable); Sorry about that. Burlen On 04/09/2012 12:24 PM, Joshua Murphy wrote: Hi Burlen, I think I am getting there, but I am having the

Re: [Paraview] Question on Information Objects

2012-04-09 Thread Joshua Murphy
Well, that's the big duhh moment I was waiting for! I do in fact need to return a value! Thanks, Josh From: Burlen Loring [blor...@lbl.gov] Sent: Monday, April 09, 2012 2:05 PM To: Joshua Murphy Cc: burlen; paraview@paraview.org Subject: Re: [Paraview]