- Nov 30, 2021
-
-
Sankhesh Jhaveri authored
-
Sankhesh Jhaveri authored
-
- Nov 08, 2021
-
-
Sankhesh Jhaveri authored
-
- Nov 07, 2021
-
-
Sankhesh Jhaveri authored
-
Sankhesh Jhaveri authored
-
- Nov 03, 2021
-
-
Sankhesh Jhaveri authored
This change allows the filter to accept n different inputs
-
- Oct 12, 2021
-
-
751ab5b5 COMP: Fix qmlplugindump issue for debug builds Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8516
-
-
ae642068 vtkChartXY: for non-identity shift scale transforms in vtkPlotPoints Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !8521
-
ae642068 vtkChartXY: for non-identity shift scale transforms in vtkPlotPoints Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !8521
-
ac399b72 vtkSanitize: search for libasan.so.6 as well f00c796f vtkSanitize: migrate to using `VTK::vtkbuild` Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8351
-
9a69e145 vtkDeprecation: add a macro to deprecate APIs in 9.2.0 Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !8488
-
21b715ba vtkAlgorithmOutput: make getters `const` 2b3c7a6e vtkDataArraySelection: add equal-to and deep-copy API bbc653c0 vtkNew: add move-assigment operator. 3386ad34 vtkIOSSReader: fix PrintSelf Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Christos Tsolakis <christos.tsolakis@kitware.com> Merge-request: !8486
-
4fd1d217 Add changelog 44300122 vtkRemoveUnusedPoints: Fix usage of vtkSMPTools 21675c1c vtkPlaneCutter: Add test for composite datasets 6cef1022 vtkPlaneCutter: support PDC and PD. 8891a2d2 vtkPlaneCutter: make it a `vtkDataObjectAlgorithm` 770537bc vtkMultiPieceDataSet: Fix typo 4c1baaef vtkPlaneCutter: CopyData manually 6147b549 vtkPlaneCutter: CopyAllocate the correct CellData ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !8511
-
-
805b8f3a Threshold filter to use vtkCellIterator Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Merge-request: !7808
-
Kitware Robot authored
-
- Oct 11, 2021
-
-
Cory Quammen authored
vtkChartXY::LocatePointInPlots() was redundantly rescaling the nearest point location by the plot's shift scale property when the mouse was over a plotted point, resulting in the incorrect point location information being displayed in the tooltip. Remove the redundant rescaling so that the tooltip displays the correct information.
-
Ben Boeckel authored
Fedora 34 has this library.
-
Ben Boeckel authored
Note that the previous attempt did not work at all because the flags were added *after* the targets had been created. The sanitizer CI has been doing nothing before now :( .
-
Ben Boeckel authored
-
Utkarsh Ayachit authored
-
Utkarsh Ayachit authored
-
Utkarsh Ayachit authored
No reason why vtkNew can't support move-assignment. Adding the operator.
-
Utkarsh Ayachit authored
Add check for `nullptr` when printing a `char*`.
-
afa7f780 cell locators: compatibility for polyhedra-polygon e286e113 vtkProbeLineFilter: check for empty partitions Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !8451
-
492762f2 Remove obsolete wrapping tools Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !8517
-
f1bbd06c vtkMultiObjectMassProperties: Fix constructor ordering warning Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !8514
-
Menno Deij - van Rijswijk authored
To prevent having to use vtkUnstructuredGrid::SafeDownCast, the loop over all cells has been changed to use vtkCellIterator. This allows the Threshold filter to be used in scenarios where the input is not a vtkUnstructuredGrid, but a vtkUnstructuredGridBase, e.g. when Catalyst uses a vtkMappedUnstructuredGrid.
-
Spiros Tsalikis authored
(cherry picked from commit 16e26e3e)
-
Spiros Tsalikis authored
It's more efficient to use vtkSMPTools::For over all tuples and std::transform for each single tuple, instead of using vtkSMPTools::Transform for each single tuple. This change resolves timeout issues when STDThread/OpenMP is used as the SMP backend. Since these issues are resolved, many tests are re-enabled
-
Spiros Tsalikis authored
(cherry picked from commit 3cf9e736)
-
vtkPlaneCutter now supports vtkPartitionedDataSetCollection and vtkPartitionedDataSet inputs. (cherry picked from commit 4c79758f)
-
vtkPlaneCutter produces non-vtkDataSet output. Hence, it's more appropriate to make it a vtkDataObjectAlgorithm subclass than vtkDataSetAlgorithm subclass. (cherry picked from commit f967f245)
-
Spiros Tsalikis authored
(cherry picked from commit 33036d8c)
-
Spiros Tsalikis authored
Since cellTypeCellData CopyAllocate inputCellData, and outputCellData CopyAllocate inputCellData, we can't safely use CopyData from cellTypeCellData to outputCellData, because TargetIndices of vtkDataSetAttributes are not defined based on the cellTypeCellData. Therefore, we need to manually copy the arrays. (cherry picked from commit 5c087004)
-
Spiros Tsalikis authored
When contour is used inside the operators of the functors, since internally it takes the values from the inputCellData, the cellTypeCellData need to also CopyAllocate the inputCellData. This is necessary because the TargetIndices map of vtkDataSetAttributes needs to be correct, otherwise, out of bounds errors can occur. (cherry picked from commit 75d5b161)
-
Spiros Tsalikis authored
(cherry picked from commit a25bbe33)
-
Spiros Tsalikis authored
(cherry picked from commit 6be183c7)
-
David Gobbi authored
These programs were removed from the build many years ago, so they can safely be removed from the source tree.
-