- Nov 08, 2024
-
-
The wrong copy constructor of Node was called, taking the ownership of data it should not. Therefore, the data was freed too early. (cherry picked from commit 7bd1f0b3)
-
(cherry picked from commit 5c4687d6)
-
The header has a method which returns a deprecated type. MSVC warns about such usage, so suppress it. (cherry picked from commit 700f5d1e)
-
(cherry picked from commit 35c93c98)
-
(cherry picked from commit 230a3254)
-
The macro goes after the `struct` keyword. (cherry picked from commit cf3e8667)
-
(cherry picked from commit 6fea24e9)
-
- Oct 24, 2024
-
-
David Gobbi authored
Since vtkIOEnSightCxxTests-MPI is optional, it is not necessary to explicitly list ParallelMPI in TEST_DEPENDS.
-
Lucas Givord authored
Make sure to test temporal overlappingAMR for the version 2.2 and 2.3
-
Lucas Givord authored
The VTKHDF File Format contains a bug and has been bump to 2.3. The vtkHDFReader has been updated to fix this issue too.
-
Mickael PHILIT authored
-
Mickael PHILIT authored
-
- Oct 22, 2024
-
-
David Gobbi authored
The cctype header is needed for std::isspace().
-
- Oct 14, 2024
-
-
Lucas Givord authored
Deprecation usage in this class was wrong, we deprecate the variable directly instead of the method. Remove also the deprecation for SetHasTemporalData as it shouldn't be deprecate.
-
- Oct 13, 2024
-
-
Ben Boeckel authored
The header has a method which returns a deprecated type. MSVC warns about such usage, so suppress it.
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
The macro goes after the `struct` keyword.
-
Ben Boeckel authored
-
- Oct 11, 2024
-
-
Mickael PHILIT authored
-
- Oct 07, 2024
-
-
Spiros Tsalikis authored
Remove the threshold that existed before because the new image testing framework is now used, whose threshold ranges from 0 to 1, and 0.05 is a good default.
-
- Oct 02, 2024
-
-
Nicolas Vuaille authored
-
Nicolas Vuaille authored
-
vtkDelimitedTextReader no longer store string only meant to be converted later, it now performs instant conversions to the target data type. The target data type is determined on flight.
-
Nicolas Vuaille authored
It improves readability and allows to reuse some part.
-
Nicolas Vuaille authored
-
Nicolas Vuaille authored
Add more use cases as testing case.
-
- Sep 30, 2024
-
-
Nicolas Vuaille authored
-
- Sep 28, 2024
-
-
Also use C++17 syntax rules as the next release expects to use C++17.
-
- Sep 27, 2024
-
-
Ben Boeckel authored
-
Ryan Krattiger authored
-
Jean Fechter authored
-
Jean Fechter authored
The wrong copy constructor of Node was called, taking the ownership of data it should not. Therefore, the data was freed too early.
-
- Sep 26, 2024
-
-
David Thompson authored
-
David Thompson authored
-
- Sep 25, 2024
-
-
Louis Gombert authored
Convert int to vtkIdType when necessary
-
- Sep 23, 2024
-
-
David Thompson authored
+ Add vtkCellGridCellCenters filter to compute cell centers as vertex cells. + Add vtkCellGridCellSource algorithm to create a single cell of the specified type. + Add an example application "CellGridSource" that demonstrates how cell-grid data is structured in memory and allows people to edit coefficients to explore function spaces. + Provide CPU interpolation that uses the same basis functions as GPU interpolation. + Add a legacy VTK reader+writer for vtkCellGrid so that ParaView client-server rendering works for small data (which must be transferred to the client). + Replace Intrepid basis functions with Intrepid2 basis functions. + Add a vtkCellGridToUnstructuredGrid filter; the output will always have linear geometry even if the source uses quadratic or higher order interpolation. + Add an HDIV attribute to the `dgHexahedra.dg` sample data. + Make the vtkPassSelectedArrays filter accept and process vtkCellGrid instances. + Add vtkCellGridTransform filter to apply a (linear) transform to a cell-grid's shape attribute. + Add vtkCellGridWarp filter to add an HGRAD cell-attribute to a cell-grid's shape attribute. + Add `vtkCellGridAlgorithm::GetInputCellAttributeToProcess()` to mirror `vtkAlgorithm::GetInputAbstractArrayToProcess()` (but for cell-grids); and `vtkCellGridAlgorithm::SetInputAttributeToProcess()` to mirror `vtkAlgorithm::SetInputArrayToProcess()`. Note that cell-attributes may currently only be referenced by name. Eventually, we should allow them to be referenced not by "type" (i.e., field association) but by vtkCellAttribute::GetSpace(). + Add attribute range information to cell-grid reader/writer. + When copying cell-grid instances, copy cached cell-grid range information in some cases. + Support range computation for HDIV and HCURL function spaces. + Add a vtkIOSSCellGridReader class that reads exodus files that end with a `.exdg` suffix as cell-grids instead of unstructured-grids. This also ports Spiros's performance changes to the new reader: changes from 9e3af159 through c0eca941 are included. Nodsets are not supported yet. + Add an option to the vtkCellGridReader/Writer classes to load/save JSON as binary message-pack data instead of plain-text.
-
- Sep 19, 2024
-
-
Caitlin Ross authored
For testing with the "office" dataset (binary and ascii), having the integration direction set to both will cause occasional errors about a bad velocity array in vtkStreamTracer. Changing the direction to forward in the test appears to fix the flakiness issue.
-
Léon Victor authored
-
- Sep 18, 2024
-
-
Léon Victor authored
Fix a bug that caused the file to be re-read from the beginning when moving the reader's cursor ahead
-