- Apr 25, 2019
-
-
ea5164bd fix bug in flagpole label Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !5459
-
5f61c139 Silence unused parameter warnings Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !5460
-
4730c6f0 Support direction in vtkCutter 4e306d52 Support direction in vtkImageDataToPointSet 25f0aa5d Expose methods in vtkImageData to convert coordinates from a system to another 7f0411c3 Add vtkImageData::SetDirectionMatrix with 9 double parameters 92593a15 Add Matrix suffix where needed to ivars and methods in vtkImageData Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !5456
-
Cory Quammen authored
-
- Apr 24, 2019
-
-
b7e5a1f9 Fixed compiler error due to incorrect header filename spelling Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !5455
-
4958bc41 vtkModuleWrapPython: remove _d postfixes for debug Python modules Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !5458
-
Alexis Girault authored
-
Alexis Girault authored
-
Alexis Girault authored
-
Ken Martin authored
The line was not initialized to the default values
-
0753d42c Don't export CellSet subclasses d0fedc3b Don't use worklets in CellSetConverters 8a050d83 Update to latest VTK-m master Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !5440
-
35593ce1 Set UPDATE_EXTENT to WHOLE_EXTENT for connections >= 1 Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Andrew Bauer <bauer.andrew.c@gmail.com> Merge-request: !5410
-
Ben Boeckel authored
-
420cbc9e Add missing paren Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !5457
-
Cory Quammen authored
Fixes compilation of vtkDebugLeaks when VTK_DEBUG_LEAKS is off.
-
Sean McBride authored
-
Alexis Girault authored
-
Alexis Girault authored
-
5ba6e83c cmake: support an unversioned install tree as an option Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !5445
-
b0bb9398 VisRTX: don't require CUDA Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Acked-by:
Tim Biedert <tbiedert@nvidia.com> Merge-request: !5451
-
98385fa2 Shaped up some VTK subclass's implementations of New() 471cac6d Add ability to store stack traces at VTK object allocation Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !5448
-
Cory Quammen authored
Need to make sure the update extent is set to the whole extent on second and subsequent inputs.
-
Sujin Philip authored
This fixes a warning in MSVC (C4275 `non - DLL-interface class 'class_1' used as base for DLL-interface class 'class_2'`). These classes are not meant to be used outside the `vtkAcceleratorsVTKm` module anyway.
-
Cory Quammen authored
These were not interacting properly with vtkDebugLeaks because their New() implementations were not registering when the objects were allocated.
-
Cory Quammen authored
VTK_DEBUG_LEAKS is great for identifying when a VTK object is leaking, but does not really help identify which objects are being leaked. This commit adds support for registering VTK objects and keeping track of the stack at the time of their creation. The top of the recorded stack corresponds to the New() command used to allocate the object. At the end of program execution, any remaining objects that have not been deleted will be printed to standard error along with the stack trace at the time of their allocation. Because storing a trace for every allocated VTK object may be prohibitively expensive in both terms of time and memory, traces are only recorded for VTK classes listed in the environment variable VTK_DEBUG_LEAKS_TRACE_CLASSES. Multiple VTK classes may be defined in this environment variable in a comma-separated list.
-
e02bdc08 Prevent the same variable/array/components from being added more than once d842ed71 Add test of IgnoreMissingArrays flag 54afd510 Update test 9b4388cd Add option to ignore missing arrays 872ce26a Enable handling of vtkCompositeDataSet b39115ef Slight refactor to prepare for supporting composite datasets 2f969758 Add implementation of GetNumberOfElements(int type) in vtkCompositeDataSet 33e0769d Move local variable declarations closer to where they are first used Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !5446
-
Ben Boeckel authored
The VTK_USE_CUDA flag is for VTK being able to compile CUDA code, not about being able to consume projects which contain CUDA code. Fixes: #17578
-
76e80ac6 Code Formatting bb9e79df Adding vtkAMRSliceFilter PointData Support Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Michael Migliore <michael.migliore@kitware.com> Merge-request: !5038
-
- Apr 23, 2019
-
-
af30b917 Add direction matrix elements to the vtkXMLImageDataReader/Writer Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !5449
-
Cory Quammen authored
-
Cory Quammen authored
-
Cory Quammen authored
-
Cory Quammen authored
Add an IgnoreMissingArrays flag. When on, if a variable is defined in the calculator via vtkArrayCalculator::Add*ArrayName() and vtkArrayCalculator::Add*Variable(), but the field data does not have an array with the associated name, this filter will not issue an error and will just silently not produce a result array. When off, the filter will produce an error (and also not produce a result array). This option is useful when dealing with partial arrays in vtkCompositeDataSets. Instead of issuing an error, vtkArrayCalculator will simply not produce a result if an array for a variable in the calculator expression does not exist in a block.
-
Cory Quammen authored
-
Cory Quammen authored
Move the core calculator function to a member function that can be called on different blocks.
-
Cory Quammen authored
-
Sujin Philip authored
CellSetConverters.cxx cannot be compiled with cuda due to including vtk headers.
-
Sujin Philip authored
We now require that `VTK::AcceleratorsVTKm` module be compiled as static whenever cuda is enabled.
-
Alexis Girault authored
-
Max Zeyen authored
-