[Paraview] segfault with append data for polyhedron datasets

2014-01-06 Thread Paul Edwards
I'm having problems when using data with polyhedron cells. I get a segfault when I run append data on the attached datasets. I've got a very simple example - two datasets, one with 3 cells and other with 2 cells. The steps to reproduce: Load polyhedron1.vtu Load polyhedron2.vtu Select both, cho

Re: [Paraview] PV3.14 How to create three equal size windows

2014-01-06 Thread Moreland, Kenneth
Depending on what you are trying to visualize, you could try using the comparative view. You can easily set up a grid of equal-sized windows (such as 3x1). However, the visualizations you put in these windows is limited in that they have to have the same data but have different properties (such as

Re: [Paraview] segfault with append data for polyhedron datasets

2014-01-06 Thread Paul Edwards
Below is the fix: diff --git a/Filters/Core/vtkAppendFilter.cxx b/Filters/Core/vtkAppendFilter.cxx index 674135c..1f8878f 100644 --- a/Filters/Core/vtkAppendFilter.cxx +++ b/Filters/Core/vtkAppendFilter.cxx @@ -302,6 +302,7 @@ int vtkAppendFilter::RequestData( if (ug && ds->GetCellType(ce

Re: [Paraview] segfault with append data for polyhedron datasets

2014-01-06 Thread Sebastien Jourdain
Hi Paul, thanks for providing the fix. Do you mind pushing that patch to gerrit and adding Utkarsh and I as a reviewer? Thanks, Seb PS: More information can be found here on how to push a patch to gerrit. http://www.vtk.org/Wiki/VTK/Git/Develop On Mon, Jan 6, 2014 at 12:35 PM, Paul Edwards wr