- Apr 07, 2017
-
-
Scott Wittenburg authored
This change allows us to keep track of vtk objects when exporting a scene description. It relies on the fact that the memory address of objects does not change frequently, if ever.
-
- Apr 05, 2017
-
-
Chris Harris authored
-
- Mar 31, 2017
-
-
Aron Helser authored
All python 2 specific files now work in python 3, so move them to the common web/Python module and remove the Python2 module. Also fix a few uses of .has_key(), which has been removed in python 3.
-
Aron Helser authored
Changes include fixing xrange, and str type differences, including required types for autobahn and twisted.
-
- Mar 14, 2017
-
-
doxy and misc. typos pt2
-
- Feb 28, 2017
-
-
Chris Harris authored
-
- Feb 08, 2017
-
-
Sebastien Jourdain authored
-
- Feb 01, 2017
-
-
Cory Quammen authored
-
- Jan 16, 2017
-
-
Michka Popoff authored
This is similar to what is already done in ITK and SimpleITK. The new vtkTargetLinkLibrariesWithDynamicLookup.cmake file is slightly modified copy from ITK/CMake/itkTargetLinkLibrariesWithDynamicLookup.cmake The explanation of what this patch tries to achieve is documented in this file. A new argument is introduced, called OPTIONAL_PYTHON_LINK. When used, the module will be optionally be linked against libpython. In the module.cmake files, most vtkPython dependencies were moved to COMPILE_DEPENDS, so that libpython is not added to the target_link_libraries() call. The vtkPython is explicitely linked against the python libraries, as this is a python executable. Also, the find_package calls for the PythonLibs were made optional when possible. The XDMF3 project was not updated, this will need to be done separately if weak linking is wished for that project. Fixes: #16068
-
- Nov 22, 2016
-
-
Sebastien Jourdain authored
Prevent error when reseting the active view of the image stream specially when no client has connected yet or requested the active view.
-
- Nov 10, 2016
-
-
-
-
Sebastien Jourdain authored
-
- Nov 03, 2016
-
-
Sebastien Jourdain authored
-
- Oct 24, 2016
-
-
Sebastien Jourdain authored
-
- Sep 23, 2016
-
-
This commit reindents the code with the following utility: Utilities/Maintenance/vtk-reindent-code.py This utility changes the positions of the braces so that they are no longer indented relative to the code block they reside in. The bash command line used was the following: for d in Charts Common Deprecated Domains Examples Filters GUISupport \ Geovis IO Imaging Infovis Interaction Parallel Rendering \ Testing Views Web Wrapping; do for e in cxx cxx.in txx txx.in hxx hxx.in h h.in c c.in; do find "${d}" -name "*.${e}" -exec \ python Utilities/Maintenance/vtk_reindent_code.py {} + done done
-
David DeMarle authored
generated via: cd $VTKSRC perl Utilities/Doxygen/doc_header2doxygen.pl --to ~/tmp/vtkheaders . cp -r ~/tmp/vtkheaders/* .
-
- Sep 12, 2016
-
-
Haocheng LIU authored
The current dependency relationship in vtk is unclear and misleading. This MR tries to rewrite them based on header files inclusion of headers and source files in each module. Corner cases are considered and modules are sorted in alphabetical order to facilitate future reference. See details in my gitlab python based script project. In future we can continue using this script to clean the VTK Dependency easily from time to time.
-
- Sep 08, 2016
-
-
Cory Quammen authored
Warnings were about casts truncating pointer values. Fixes 16834.
-
- Aug 29, 2016
-
-
Sebastien Jourdain authored
-
- Aug 26, 2016
-
-
Shawn Waldon authored
-
- Aug 23, 2016
-
-
Shawn Waldon authored
-
- Aug 19, 2016
-
-
Bill Lorensen authored
This is a fix for: vtk/vtk#14310 Windows applications that run for a long time report that rendered objects do not change. This is because the modified time on a Windows system is 32 bits. This causes overflows that defeat the modified time mechanism. This patch defines a new type, vtkMTimeType that is 64 unsigned integer regardless of the architecture. A mechanism to provide backward compatibility is introduced. The preprocessor define "VTK_HAS_MTIME_TYPE" can be used in applications that must build against VTK versions that use the "unsigned long" type for MTime's. Methodology used to find MTime occurences: 1) Identify files as follows: git grep "unsigned long" | grep ime | cut -d":" -f1,1 | sort | uniq 2) Hand edit each of those files replacing "unsigned long" with "vtkMTimeType" where appropriate. 3) Temporarily change typedef for vtkMTimeType to "double" to detect missing conversions
-
- Aug 01, 2016
-
-
Sebastien Jourdain authored
-
- Jul 26, 2016
-
-
Ken Martin authored
some dashboard warnings
-
- Jul 25, 2016
-
-
Sebastien Jourdain authored
Replace render loop on the server side by a PushRender event when data has changed in the scene which reduce the amount of images sent.
-
- Jul 13, 2016
-
-
Ben Boeckel authored
The Python modules should hide this factor. Instead, try to import it from the top-level package to support ParaView.
-
- Jul 11, 2016
-
-
Sebastien Jourdain authored
From now on, the JavaScript code will be bundled with the ParaView distributed application. The new source code can be found on github at the following address: http://github.com/Kitware/paraviewweb
-
- Jul 08, 2016
-
-
Sebastien Jourdain authored
-
Ben Boeckel authored
The module lives under the `vtk` module, so import it from there. The new ParaView packages do not add `vtk` to `sys.path` (which is how this worked before).
-
Cory Quammen authored
This reverts commit 772cc086. Needs more work to build with VTK_KITS_ENABLED and to build with ParaView.
-
- Jul 07, 2016
-
-
Sean McBride authored
vtk(.*)\(const vtk\1&\);\s*//\s*Not implemented[\.]* to vtk\1(const vtk\1\&) VTK_DELETE_FUNCTION; vtk(.*)\(const vtk\1 &\);\s*//\s*Not implemented[\.]* to vtk\1(const vtk\1 \&) VTK_DELETE_FUNCTION; vtk(.*)\( const vtk\1 & \);\s*//\s*Not implemented[\.]* to vtk\1( const vtk\1 \& ) VTK_DELETE_FUNCTION; vtk(.*)\( const vtk\1& \);\s*//\s*Not implemented[\.]* to vtk\1( const vtk\1\& ) VTK_DELETE_FUNCTION; vtk(.*) \(const vtk\1&\);\s*//\s*Not implemented[\.]* to vtk\1 (const vtk\1\&) VTK_DELETE_FUNCTION;
-
Sean McBride authored
(operator\s*=.*);\s*//\s*Not\s*implemented[\.]* to \1 VTK_DELETE_FUNCTION; After that, this finds basically nothing: operator.*implemented then manually reverted changed files in VPIC and KWSys folders.
-
- Jul 05, 2016
-
-
Ben Boeckel authored
The code always modified `pos` even when it should not have.
-
- Jun 26, 2016
-
-
Michka Popoff authored
This is similar to what is already done in ITK and SimpleITK. The new vtkTargetLinkLibrariesWithDynamicLookup.cmake file is slightly modified copy from ITK (things have been renamed from ITK to VTK). The explanation of what this patch tries to achieve is documented in this file. A new argument is introduced, called OPTIONAL_PYTHON_LINK. When used, the module will be optionally be linked against libpython. In the module.cmake files, most vtkPython dependencies were moved to COMPILE_DEPENDS, so that libpython is not added to the target_link_libraries() call. The vtkPython is explicitely linked against the python libraries, as this is a python executable. Also, the find_package calls for the PythonLibs were made optional when possible. This fixes the following bug: http://www.vtk.org/Bug/view.php?id=16068
-
- Jun 22, 2016
-
-
Louis Amore authored
vectorMode was passed in place of expected colorMode
-
- May 25, 2016
-
-
Perl was used to remove all the BTX and ETX markers from the code. The specific command that was run on all "vtk*.h" files was this: perl -0777 -i -pe 's/(\n* *\/\/ *[BE]TX *\n+)+/\n\n/g' This regex replaces each BTX/ETX line, plus any leading or trailing blank lines, with a single blank line.
-
- Apr 08, 2016
-
-
Shawn Waldon authored
When the client disconnects from the vtkweb session, it is setting one of its members to a list rather than a dict. All the other uses of this member assume a dict and this causes AttributeErrors on reconnection when the list is used.
-
- Mar 08, 2016
-
-
Code extracted from: https://gitlab.kitware.com/third-party/proj.git at commit 41bdf05361007f8c5186f3df9944d86bb273ed13 (for/vtk).
-
- Feb 22, 2016
-
-
Sean McBride authored
-