- 04 Feb, 2022 5 commits
-
-
d0b717d4 Makes vtkColorLegend ticks now use hard limits Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Acked-by:
Thomas Galland <thomas.galland@kitware.com> Merge-request: !8875
-
Timothee Chabat authored
vtkColorLegend would use the smart ticking of the vtkAxis but this can lead to incorrect intepretation of the legend. It now follows strictly the range of the transfer function. Also make sure the range labels are displayed.
-
324c8ad8 Fixed Bugs About Computing 3D Surface Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Merge-request: !8648
-
54aef34a Fix non mpi adios build include Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !8882
-
Kitware Robot authored
-
- 03 Feb, 2022 5 commits
-
-
Xinhua Zhang authored
A bug was caused by not using SetInputArrayToProcess in the AdvectSimple function in the vtkStreamSurface filter. The other bug was caused by the incorrect threshold usded in the AdvectIterative function. We added a new test for testing the correctness of the AdvectSimple function. Finally, we replaced the threshold for computing critical points with EpsilonCriticalPoint, which can be changed by users.
-
f0edfeed Add VTK-m overrides for VTK filters Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !8839
-
Mathieu Westphal authored
-
df124e97 Add Faster AddRGBPoints Routine Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !7219
-
Kitware Robot authored
-
- 02 Feb, 2022 7 commits
-
-
e540ac4c Use MathJax to render latex formulae in doxygen documentation f9eccee6 Use GitLab link to VTK repository on doxygen pages 3d05a16c Fix regex in doxygen generating perl scripts Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8877
-
Stephen Hogarth authored
Adding a higher performance rgb point routine. The SortAndUpdateRange call after every point adds significant overhead when adding a large number of points. If we add points in bulk, then run the sort, we end up at the same resulting state with much better performance.
-
2f90d113 Add vtkOffscreenOpenGLRenderWindow to render_window_serializer Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Sebastien Jourdain <sebastien.jourdain@kitware.com> Merge-request: !8876
-
298ffde8 Cell Links: Parallel Memory Allocation Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8874
-
40f672b6 ENH: Add slicing scale factor when scrolling in vtkResliceImageViewer Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8848
-
Kitware Robot authored
-
Sankhesh Jhaveri authored
Fixes #18300
-
- 01 Feb, 2022 8 commits
-
-
Sankhesh Jhaveri authored
-
Sankhesh Jhaveri authored
This change fixes the regex used to find the documentation block terminating string when parsing header files for examples and test links. The change ensures that any leading spaces on the line in the terminating string are not ignored.
-
Yasushi Saito authored
This is needed to make EGL renderer working with remote clients.
-
14fce140 Add a vtkPythonUtil::IsInitialized() check Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Charles Gueunet <charles.gueunet@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !8866
-
Sujin Philip authored
The override can be turned on/off at build time and run time.
-
25e95f65 Rename vtk filter to avoid naming confusion 53fc5494 Rename vtk filter to avoid naming confusion 351751c9 Generate better __init__.py e4bcf3c5 Add install target on the wrapping example Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Merge-request: !8858
-
Charles Gueunet authored
-
Kitware Robot authored
-
- 31 Jan, 2022 9 commits
-
-
Stephen Hogarth authored
Allocate memory in parallel for increased performance.
-
dc75f56f Remove BuildTime shadow parameters. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Merge-request: !8867
-
Charles Gueunet authored
-
Charles Gueunet authored
-
7afd0301 Fix writing of PBR material in vtkGLTFExporter for PBR interpolation Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8869
-
aacf8082 Read/Write partitioned dataset name in vtkCompositeDataReader/Writer Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !8859
-
b862b042 Fix build warnings. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Merge-request: !8850
-
Laurenn Lam authored
-
Kitware Robot authored
-
- 30 Jan, 2022 2 commits
-
-
Andras Lasso authored
vtkGLTFExporter always wrote approximated Phong/Gouraud material parameters into glTF files, even when the actor was rendered using PBR interpolation. Fixed by writing PBR parameters directly when interpolation of the actor property is set to VTK_PBR.
-
Kitware Robot authored
-
- 29 Jan, 2022 1 commit
-
-
Kitware Robot authored
-
- 28 Jan, 2022 3 commits
-
-
Peter Franz authored
-
David Gobbi authored
The Python wrappers require vtkPythonUtil::Initialize() to be called before the wrappers are used. This is done during the module initialization for vtkCommonCore. When other modules are loaded, they call vtkPythonUtil::IsInitialized(), which will fail if their vtkPythonUtil is not the same one initialized by vtkCommonCore. For example, if vtkCommonCore came from a pip installation of VTK, and you load another module that links to a VTK installed somewhere else, an initialization failure will occur. Prior to this commit, the initialization falure caused a segfault, but now it raises an ImportError exception instead.
-
62b024b2 Fix warnings with stream surface Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Timothee Chabat <timothee.chabat@kitware.com> Acked-by:
Francois Mazen <francois.mazen@kitware.com> Merge-request: !8860
-