- 20 Mar, 2018 1 commit
-
-
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.
-
- 29 Sep, 2017 1 commit
-
-
Andrew Bauer authored
Adding in functionality to allow inserting vtkNew objects into stl containers of vtkSmartPointer objects as well as comparisons between vtkNew objects and raw pointers. Also removing Get() and GetPointer() calls from vtkNew objects since in most instances we can just pass in the vtkNew<> object instead of having to use the Get() or GetPointer() methods to get the raw pointer.
-
- 23 Sep, 2016 1 commit
-
-
Kitware Robot authored
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
-
- 08 Mar, 2016 1 commit
-
-
Kitware Robot authored
Code extracted from: https://gitlab.kitware.com/third-party/proj.git at commit 41bdf05361007f8c5186f3df9944d86bb273ed13 (for/vtk).
-
- 16 Jun, 2014 1 commit
-
-
Marcus D. Hanwell authored
This will enable us to switch the backend at will, the OpenGL works whereas the OpenGL2 needs some additional improvements mainly to use point sprites (where most of the tests are failing. Change-Id: I648c18ca33b4c6796c4b7a829a2902f7e91ff412
-
- 09 Apr, 2012 1 commit
-
-
VTK Developers authored
Move source files from their former monolithic VTK location to their new location in modular VTK without modification. This preserves enough information for "git blame -M" and "git log --follow" to connect modularized VTK files to their original location and history. Co-Author: Marcus D. Hanwell <marcus.hanwell@kitware.com> Co-Author: Chris Harris <chris.harris@kitware.com> Co-Author: Brad King <brad.king@kitware.com> Co-Author: Nikhil Shetty <nikhil.shetty@kitware.com>
-
- 22 Jun, 2011 1 commit
-
-
Julien Finet authored
Change-Id: I5b13db434760301e92b665dd5894e255dd48815a
-
- 06 Oct, 2010 1 commit
-
-
Marcus D. Hanwell authored
Moving most of the interactor mode related code to vtkRenderView. Fixed vtkRenderViewBase so that it does the minimal amount of work to preserve the interactor style.
-
- 30 Sep, 2010 1 commit
-
-
Marcus D. Hanwell authored
This wasn't doing anything special, and so use the default version.
-
- 02 Jul, 2010 1 commit
-
-
Marcus D. Hanwell authored
Refactored this class to use smart pointers, and added some notes about using the view with QVTKWidget.
-
- 30 Jun, 2010 1 commit
-
-
Marcus D. Hanwell authored
-
- 28 Jun, 2010 1 commit
-
-
Marcus D. Hanwell authored
Change to inherit from the lighter weight vtkRenderViewBase class, mainly to get rid of several classes that were not being used by the vtkContextView. The default background is no longer a gradient, other than that everything else that was being used should remain the same.
-
- 20 May, 2010 1 commit
-
-
Mark Olesen authored
The CVS $Revision$ keyword replacement will no longer maintain these macros automatically. They were used only to implement CollectRevisions and vtkObjectBase::PrintRevisions, an API that was never used. Automated as follows: pass 0: catch templates --------------- $ git grep 'vtk\(Cxx\|Type\)RevisionMacro' | grep '<' pass 1: main changes --------------- $ git grep -l '^vtkCxxRevisionMacro' | while read file; do echo "$file" 1>&2 perl -i -ne 'print unless (/^vtkCxxRevisionMacro/ and /\)/)' $file done $ git grep -l -e 'vtkTypeRevisionMacro(' | while read file; do echo "$file" 1>&2 perl -i -pe 's/vtkTypeRevisionMacro/vtkTypeMacro/g' $file done pass 2: verify --------------- $ git grep 'vtk\(Cxx\|Type\)RevisionMacro' Fixed multi-line vtkCxxRevisionMacro and templates by hand.
-
- 23 Apr, 2010 1 commit
-
-
Mark Olesen authored
The CVS $Revision$ keyword replacement will no longer maintain these macros automatically. They were used only to implement CollectRevisions and vtkObjectBase::PrintRevisions, an API that was never used. Automated as follows: pass 0: catch templates --------------- $ git grep 'vtk\(Cxx\|Type\)RevisionMacro' | grep '<' pass 1: main changes --------------- $ git grep -l '^vtkCxxRevisionMacro' | while read file; do echo "$file" 1>&2 perl -i -ne 'print unless (/^vtkCxxRevisionMacro/ and /\)/)' $file done $ git grep -l -e 'vtkTypeRevisionMacro(' | while read file; do echo "$file" 1>&2 perl -i -pe 's/vtkTypeRevisionMacro/vtkTypeMacro/g' $file done pass 2: verify --------------- $ git grep 'vtk\(Cxx\|Type\)RevisionMacro' Fixed multi-line vtkCxxRevisionMacro and templates by hand.
-
- 12 Mar, 2010 1 commit
-
-
Francois Bertel authored
-
- 23 Dec, 2009 1 commit
-
-
Marcus D. Hanwell authored
-
- 04 Dec, 2009 1 commit
-
-
Marcus D. Hanwell authored
-
- 27 Nov, 2009 1 commit
-
-
Marcus D. Hanwell authored
This is an initial import of the surviving parts of the 2D drawing API I have been working on, along with a prototype for a 2D scene and some chart elements. This work is experimental, and parts of the API will be moved into Rendering. The API is subject to change and/or removal.
-