- 24 Mar, 2022 5 commits
-
-
-
71789ef4 large files fix for H5Rage Reader f98db3de Address IOSSReader issues. 6e19db07 vtkAMRVelodyneReaderInternal: remove invalid string assignment fc64bc4b Fix the location of the OpenVDB output for vtkImageData d3c54303 vtkXMLUnstructuredDataWriter: protect against accessing null cell array e17403cf Clear the REFINEDCELL ghost flag when merging the ghost arrays. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Francois Mazen <francois.mazen@kitware.com> Acked-by:
Jaswant Panchumarti <jaswant.panchumarti@kitware.com> Merge-request: !9006
-
f68120bd Removed data races Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !9017
-
3a0a28db vtkJSONSceneExporter: Fix error when overwriting existing file Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8959
-
Kitware Robot authored
-
- 23 Mar, 2022 15 commits
-
-
Will Schroeder authored
After the initial implementation of the algorithm, a subsequent refactoring introduced a data race involving the vtkCellArray::Visit() method. The offset values were repeatedly written over top of one another (due to threading).
-
1e80cb52 Comment: Use the right cursor name bb9070a3 Reindent + naming on HTG testing Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Nicolas Vuaille <nicolas.vuaille@kitware.com> Merge-request: !9012
-
8cfbd7aa vtkExtractHistogram: Support vtkHyperTreeGrid Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Yohann Bearzi <yohann.bearzi@kitware.com> Acked-by:
Charles Gueunet <charles.gueunet@kitware.com> Merge-request: !9013
-
633215c1 Merge branch 'upstream-ioss' into bump-ioss-msvc2017 2fd607dc ioss 2022-03-22 (d48cabb0) 8edfb7c5 tpl: update IOSS Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Lucas Gandel <lucas.gandel@kitware.com> Merge-request: !9010
-
Charles Gueunet authored
-
Charles Gueunet authored
-
Spiros Tsalikis authored
-
dca6ad3b Eliminated data race Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !9009
-
The H5Rage reader was seg faulting when trying to read very large files. Fixed this by changing some variable types from int to 64 bit int.
-
- address paraview/paraview#21256 Do not lower case variable names. - address paraview/paraview#21238 Do not parse numeric suffixes as vectors.
-
Assigning nullptr char* to a std::string is invalid and causes a crash.
-
When exporting OpenVDB files from vtkImageData, the vtkImageData's Origin and Spacing were not taken into account and this caused issues when importing these OpenVDB files into other packages. This change fixes that bug.
-
-
modifed cherry pick of 29f32c2fb0352998dd9d75650ddd8ee0074559ef
-
Kitware Robot authored
-
- 22 Mar, 2022 13 commits
-
-
Cory Quammen authored
# By Seacas Upstream * upstream-ioss: ioss 2022-03-22 (d48cabb0)
-
Code extracted from: https://gitlab.kitware.com/third-party/seacas.git at commit d48cabb03eb177ef5730132a1ec10ec5ed3a2127 (ioss/for/vtk-20220322-master-gafd58dee6).
-
Cory Quammen authored
Bring in fix for MSVC2017 compilation
-
Will Schroeder authored
Subsequent refactoring using the vtkCellArray::Visit() method introduced a data race (simultaneous writes). The cell array's internal offset array needs to be finalized just one time, not every time a cell is inserted.
-
5c6626f1 Add changelog 963c6ea6 vtkTextRepresentation: Reverse to old SetWindowLocation 9827d591 vtkScalarBarWidget: Use vtkAbstractWidget's GetProcessEvents() Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by: Tiffany Chhim tiffany.chhim@kitware.com Merge-request: !9008
-
Spiros Tsalikis authored
-
Spiros Tsalikis authored
In vtk/vtk!8674, vtkTextRepresentation's SetWindowLocation was removed and the vtkBorderRepresentation's SetWindowLocation is now used. This led to not calling CheckTextBoundary inside SetWindowLocation.
-
Spiros Tsalikis authored
In vtk/vtk!8674, GetProcessEvents changed for vtkBorderWidget, which also changed it for vtkScalarBarWidget since it inherits vtkBorderWidget, but that was not intended.
-
d910fcbe vtkReflectionFilter: Fix voxel point order Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !9007
-
Jaswant Panchumarti authored
- addresses paraview/paraview#21127
-
9aa60cb2 DataSetAdapter PassData should pass only valid attribute types 773241c6 Add HyperTreeGrid release notes 2d27a8bf Update some comments 89d8336a Do not copy CellData Structure in vtkHyperTreeGrid::CopyStructure 3d63bb66 Refactor vtkProgrammableFilter to support vtkHyperTreeGrid fd5c70bf Deprecate HTG NumberOfVertices in favor of NumberOfCells eecdcc79 Add HyperTreeGrid numpy support through dataset_adapter python module b900945f vtkArrayCalculator supports HyperTreeGrid Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !9002
-
Nicolas Vuaille authored
-
Kitware Robot authored
-
- 21 Mar, 2022 7 commits
-
-
66e81f44 large files fix for H5Rage Reader Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Yohann Bearzi <yohann.bearzi@kitware.com> Merge-request: !8997
-
Nicolas Vuaille authored
-
Nicolas Vuaille authored
-
Nicolas Vuaille authored
* vtkCellData::CopyStructure create empty arrays whereas vtkHyperTreeGrid::CopyStructure copy the grid. Doing both leaves the vtkHyperTreeGrid in an inconsistent state, as number of elements in CellArray is not the actual number of Cells. We still can copy ghost arrays. * For ref, vtkDataSet subclasses do not call vtkFieldData::CopyStructure in their CopyStructure implementation.
-
Nicolas Vuaille authored
* vtkMolecule is handled as a vtkGraph subclass * use ShallowCopy for any vtkDataObject (incl. vtkTable) * use CopyStructure only for relevant classes (it is not declared in vtkDataObject, only in subclasses)
-
Nicolas Vuaille authored
* HTG model relies on graph, thus initial the term of Vertices. But in the VTK world, HTG vertices are more like Cells. Moreover 'Vertices' also has another meaning in VTK. So we should use the "Cell" word in the API.
-
Nicolas Vuaille authored
-