- Apr 30, 2019
-
-
Mathieu Westphal (Kitware) authored
This reaplace the easier usage of vtkMutexLock with std::mutex Actual deprecation of vtkMutexLock will need more work and design.
-
- Apr 02, 2019
-
-
Sebastien Jourdain authored
-
- Jan 08, 2019
-
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
-
- Dec 19, 2018
-
-
Ken Martin authored
attempt to fix issues from vtk/vtk!4916
-
- Dec 12, 2018
-
-
Sebastien Jourdain authored
-
Sebastien Jourdain authored
-
- Nov 04, 2018
-
-
- Nov 03, 2018
-
-
Julien Finet authored
Traceback (most recent call last): File "...\wslink\websocket.py", line 275, in onMessage results = func(obj, *args, **kwargs) File "...\vtk\web\protocols.py", line 379, in addRenderObserver self.publish('viewport.image.push.subscription', pushRender()) File "...\vtk\web\protocols.py", line 337, in pushRender reply = self.stillRender({ "view": realViewId, "mtime": self.trackingViews[vId]["mtime"] }) File "...\vtk\web\protocols.py", line 309, in stillRender reply["memsize"] = reply_image.GetDataSize() if reply_image else 0 AttributeError: 'str' object has no attribute 'GetDataSize'
-
- Aug 03, 2018
-
-
Scott Wittenburg authored
-
- Jun 17, 2018
-
-
luz.paz authored
Found via `codespell`
-
- May 18, 2018
-
-
Populate a script with `map_<md5>=<sha512>` variable settings and then run the following to convert the content link files: git ls-files -- '*.md5' | while read f; do md5="$(cat "$f")" sha512="$(eval echo \${map_$md5})" rm "$f" echo $sha512 > ${f%.md5}.sha512 done
-
- Apr 24, 2018
-
-
Scott Wittenburg authored
-
- Apr 11, 2018
-
-
Scott Wittenburg authored
-
- Mar 20, 2018
-
-
Sean McBride authored
-
Sean McBride authored
-
Sean McBride authored
This required some clean up, because the automatic changes borked a couple of files, but mostly resulted in stupid whitespacing. A few find/replace fixed things up. There are now some duplicate semis because it did changes like: ~AMRIndexIterator() override{}; to ~AMRIndexIterator() override= default;; Note there was a pointless semi before, which clang-tidy didn’t expect / account for. My next commit will remove them.
-
- Mar 13, 2018
-
-
Sean McBride authored
-
- Mar 08, 2018
-
-
Sean McBride authored
Removed unneed null checks before delete.
-
- Mar 05, 2018
-
-
Sebastien Jourdain authored
-
- Feb 22, 2018
-
-
Sebastien Jourdain authored
-
- Feb 21, 2018
-
-
Sebastien Jourdain authored
-
- Feb 14, 2018
-
-
Sebastien Jourdain authored
-
Sebastien Jourdain authored
-
Sebastien Jourdain authored
-
- Feb 05, 2018
-
-
Sebastien Jourdain authored
-
- Jan 11, 2018
-
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
-
- Jan 03, 2018
-
-
luz.paz authored
found via `codespell`
-
- Dec 15, 2017
-
-
Utkarsh Ayachit authored
Split `vtk` package into `vtkmodules` and `vtk`. `vtkmodules` doesn't import any of the modules included in its `__init__.py`, instead provides a `all.py` module that imports all modules in the old `vtk` package. `vtk` is now a module that imports `vtkmodules/all.py` thus behaving like the old `vtk` package.
-
- Dec 11, 2017
-
-
Ben Boeckel authored
The property isn't used anymore by the wrapping tools.
-
Ben Boeckel authored
Now that Tcl wrapping is gone, all wrapping tools now use `WRAP_EXCLUDE_PYTHON` instead.
-
- Nov 22, 2017
-
-
Ben Boeckel authored
-
- Nov 14, 2017
-
-
Utkarsh Ayachit authored
Use `vtk.${vtk-module}` rather than `${vtk-module}Python` when importing VTK modules.
-
- Oct 12, 2017
-
-
David Gobbi authored
Some VTK source code still had tabs (even some of the .py files!). Also, several comments used utf-8 quotes, which are hard to tell from regular quotes by eye and can lead to confusing mistakes.
-
- Oct 04, 2017
-
-
Ken Martin authored
This topic catches another batch of NULL conversions that clang did not handle for various reasons. It also includes a number of changes to comments and strings where NULL was used. It also catches some recent code changes where NULL was used instead of nullptr.
-
Kitware Robot authored
Now that VTK requires a C++11 compiler we can ditch using custom typedefs to wrap =delete;
-