- 04 Jun, 2019 2 commits
-
-
Ken Martin authored
First issue is that a tolerance squared was being passed into a function needing distance. Needed a sqrt. The second issue is that the default computed tolerance for the proble filter was absurd and wasn't computed at all just hardcoded to max double which causes numerous overflows and incorrect behavior. Changed the logic to look at some actual cells and compute a tolerance from them.
-
Bryn Lloyd authored
-
- 27 May, 2019 6 commits
-
-
Alexis Girault authored
-
Alexis Girault authored
-
Alexis Girault authored
-
Alexis Girault authored
-
Alexis Girault authored
-
Alexis Girault authored
-
- 23 May, 2019 5 commits
-
-
Will Schroeder authored
Point arrays were being used when cell attributes were generated. Fixed that and updated some tests.
-
Will Schroeder authored
Memory allocation error when a contour value resulted in no output primitives, and when the contour was just one of many contours.
-
Cory Quammen authored
-
Andras Lasso authored
vtkTubeFilter removed non-unique points from cells of its input polydata. This data corruption caused issues for example when the same polydata was used as input by various filters. Fixed by making a copy of point indices before removing non-unique points.
-
Mathieu Westphal authored
-
- 21 May, 2019 2 commits
-
-
David Gobbi authored
This filter wasn't streaming because the input's whole extent was updated before vtkImageMarchingCubes::RequestData() was called. In order for streaming to work properly, the input data must not be updated before RequestData() updates it. To state this in another way, setting a memory limit for the input has no effect if the whole input is filled before vtkImageMarchingCubes even executes. To properly test this filter, the test was modified to use a streaming reader (vtkImageReader2 instead of vtkVolume16Reader), and the InputMemoryLimit was reduced.
-
Ken Martin authored
minro fix
-
- 17 May, 2019 2 commits
-
-
Patricio Sandaña authored
-
Cory Quammen authored
-
- 13 May, 2019 2 commits
-
-
David E. DeMarle authored
This brings in VTK commit 67ec1f63 and subsequent changes to the appendfilter over to the VTK branch that ParaView's release branch uses in order to fix the merge blocks filter in ParaView 5.6.x. See paraview/paraview#18991
-
Will Schroeder authored
These changes address issue #17597.
-
- 10 May, 2019 4 commits
-
-
Dan Lipsa authored
-
Mathieu Westphal authored
-
Mathieu Westphal authored
This implements a SMP version of the LagrangianParticleTracker in order to increase performance. It make the whole algorithm thread safe and uses multiple vtkSMP::For and mutexes instead of reduction
-
Mathieu Westphal authored
This adds a new UserData parameters to FunctionValues so any type of data can be passed down.
-
- 09 May, 2019 2 commits
-
-
Dan Lipsa authored
Runtime warnings.
-
Dan Lipsa authored
There were replaced by: vtkParticleTracerBase, vtkParticleTracer, vtkParticlePathFilter, and vtkStreaklineFilter and their parallel versions. See https://blog.kitware.com/improvements-in-path-tracing-in-vtk/
-
- 07 May, 2019 7 commits
-
-
Viktor Leonhardt authored
-
Viktor Leonhardt authored
-
Viktor Leonhardt authored
-
Viktor Leonhardt authored
-
Ken Martin authored
This is a mess because it seems like the pipeline created has no indication of what nodes are what level in the tree. So we end up having to iterate over the last filters input to count non lowest level nodes and then use that count when iterating over the mappers input.
-
Ken Martin authored
minor fix
-
Mathieu Westphal authored
-
- 06 May, 2019 2 commits
-
-
Ken Martin authored
They were drawing thee layers of overlapping data Depending on pointer values the test could fail due to which level was drawn last.
-
Ken Martin authored
Similar to PolyLineSource which was made a subclass of this. Useful to have a gui driven point source with explcit points.
-
- 03 May, 2019 1 commit
-
-
John Patchett authored
-
- 02 May, 2019 4 commits
-
-
Cory Quammen authored
Add a check whether a data object can be processed by vtkContour3DLinearGrid when contouring by the named array. Conditions are: * all cells are linear * the contour array is a supported type Added some tests of this function.
-
Cory Quammen authored
-
Cory Quammen authored
These warnings are for input state that does not affect the correctness of the filter output, so convert them to vtkLog informational messages.
-
Max Zeyen authored
Fixing errors within vtkCellValidator that caused a wrong state mask evaluation, returning wrong error messages in case of errors. Changing the IsConvex method of vtkPolyhedron to use local instead of global face ids to access points. Global face ids resulted in accessing the wrong points causing erroneous face centroids and normals.
-
- 30 Apr, 2019 1 commit
-
-
Viktor Leonhardt authored
-