- Jul 01, 2021
-
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
I'm not sure where 9.0.1's notes ended up though.
-
Ben Boeckel authored
This now matches the pattern used in the release note process checklist.
-
addeaca3 Revert "Merge topic 'backport-missed-mrs-9.0.3' into release" Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8136
-
Ben Boeckel authored
This reverts commit 393370ca, reversing changes made to 7862ebd6. While !6687 was requested to be backported (and done via !8134), it was indicated that #18242 is an outstanding issue about something in the way the backported commit changed event loop logic that causes VTK render windows to not exit properly. Changes with such outstanding, unresolved issues are not eligible for patch releases and as such is being reverted.
-
3621bbc7 Merge topic 'fix_xlib_processevents' into backport-missed-mrs-9.0.3 efc36840 Fix processEvents and cleanup use of old var Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8134
-
Ben Boeckel authored
Merge-request: !6687
-
Remove use of static and use standard Done ivar (cherry picked from commit 6c26ec47)
-
9e32861c gitlab-ci: add jobs which create release artifacts on tags 27b84059 gitlab-ci: add doxygen job from `master` 0607a3ec gitlab-ci: add a job to upload wheels to VTK's package registry a2ff4b19 gitlab-ci: rename the PyPI upload job dd513af9 SourceTarball.bash: reduce output from wget Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8132
-
- Jun 30, 2021
-
-
Ben Boeckel authored
(cherry picked from commit 0bf5f7a7)
-
Ben Boeckel authored
This will help `release` build the documentation in a consistent manner.
-
Ben Boeckel authored
(cherry picked from commit 666adc2e)
-
Ben Boeckel authored
Wheels will also be uploaded to VTK's repository location. (cherry picked from commit 6c8c97e9)
-
Ben Boeckel authored
The CI logs end up being chopped off just for progress information which isn't very useful. (cherry picked from commit 696a9baf)
-
237e55bf ci: disable debug leaks in wheels Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8129
-
f3660a8a PyVTKMethodDescriptor: avoid deprecated API Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: David Gobbi <david.gobbi@gmail.com> Merge-request: !8130
-
Ben Boeckel authored
This API was added in Python 2.2, so no need to do any version checks. (cherry picked from commit 33251fdd)
-
Ben Boeckel authored
Fixes: #18248
-
394d7468 gitlab-ci: fix logic around tag condition a1ba88a8 gitlab-ci: fix indentation in upload ruleset Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !8125
-
- Jun 29, 2021
-
-
Ben Boeckel authored
The upload job should be masked on MRs, but should run for tags on the main repo.
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
They've been collected into the release document.
-
Ben Boeckel authored
-
Ben Boeckel authored
-
17648fa6 Merge topic 'resample-state-fixes' into backport-missed-mrs-9.0.2 26977d7c Set default interpolator's interpolation mode 48af6be4 Add vtkImageReslice RequestInformation helper Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8112
-
- Jun 28, 2021
-
-
Ben Boeckel authored
Merge-request: !8107
-
The GetInterpolator() method creates a new interpolator object if one doesn't already exist. It's mode should be set to the same as vtkImageReslice::InterpolationMode before it is returned, to avoid surprising the person who calls GetInterpolator(), rather than waiting until RequestData. (cherry picked from commit 91370bde)
-
This change splits the body of RequestInformation() into two separate parts, one which takes care of the output's geometry (and which is overriden by derived classes like vtkImageResample), and another which takes care of many vtkImageReslice-specific features such as scalar value conversion and the output stencil. (cherry picked from commit f905b904)
-
3230e73b Fix SpecialColors for vtkWindowLevelLookupTable 40203c05 Add more OpenGL2 modules to Rendering group 06d3c273 Fix incorrect vtkAxesActor bounds calculation 06e41dd4 Fix the type conversion warning for DICOMParser 4894c09b Remove PyEval methods deprecated in Python 3.9 860eb883 Update the ref to vtkDICOM remote module 29e77621 Update the ref to vtkDICOM remote module 29cd3575 Remove `numpy.character` without replacement ... Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !8102
-
- Jun 24, 2021
-
-
David Gobbi authored
When the AboveRangeColor and BelowRangeColor were added to the vtkLookupTable several years ago, the vtkWindowLevelLookupTable was not similarly modified. As a result, the values of the beyond-range colors were left uninitialized and generally had a value of (0,0,0,0) when the vtkWindowLevelLookupTable was used. I also took the opportunity to have vtkWindowLevelLookupTable implement the ForceBuild() method instead of the Build() method. This allows ForceBuild() and Build() to work for this class in the same way as they do for vtkLookupTable.
-
David Gobbi authored
The RenderingVolumeOpenGL2 module was in the Rendering group, but not RenderingContextOpenGL2 or DomainsChemistryOpenGL2. As a result, the latter two modules were not part of the default build, even though they implement the backends for modules that are part of the default build (DomainsChemistry, RenderingContext2D, Charts, etc). The fact that the VTK Python wheels provided modules without backends has caused trouble for several users. The RenderingOpenGL2 module itself was not part of the Rendering group, either, but seems to have been brought in as a dependency of RenderingVolumeOpenGL2.
-
David Gobbi authored
There were logical errors in the computation of the Bounds from the parts of the axes. The original code made two incorrect assumptions: 1) that the upper bound was never negative, and 2) that the upper bound was always farther from the origin than the lower bound.
-
David Gobbi authored
-
David Gobbi authored
-
David Gobbi authored
Fix vtkDICOMReader tilted-gantry PatientMatrix for BottomUp. This is required in order for vtkDICOMCTRectifer to work when the reader uses "BottomUp" row order (which is the default).
-
David Gobbi authored
This fixes a potential infinite loop while parsing files that end in garbage, and updates the DICOM dictionary to 2020e.
-
Based on the discussion within the merge request !7880 the possibility to convert a numpy array containing single characters of any type has been removed without replacement, since these arrays have no appropriate counterpart in VTK. For more information see: vtk/vtk!7880
-
Numpy VTK array conversion contains the the type numpy.character, which is deprecated since NumPy version 1.19 See: https://numpy.org/doc/stable/reference/arrays.dtypes.html section Generic types.
-