- 01 Dec, 2017 1 commit
-
-
Sean McBride authored
For now, vtkTypeBool is just a typedef for int, but one day it can become a real bool. Found with a regex: vtkBooleanMacro.*int\)
-
- 04 Oct, 2017 1 commit
-
-
Kitware Robot authored
Now that VTK requires a C++11 compiler we can ditch using custom typedefs to wrap =delete;
-
- 02 Oct, 2017 1 commit
-
-
Kitware Robot authored
Now that VTK requires a C++11 compiler we can ditch using custom typedefs
-
- 26 Jul, 2017 1 commit
-
-
Kitware Robot authored
This topic is the result of running clang-tidy to modernize our usage of NULL and 0 to nullptr. It also includes some manual and semi manual changes where clang-tidy would not be expected to work (such as in comments, or classes not compiled on this build) There are definitely many comments and occurances that this topic misses that we will need to fix over time.
-
- 16 Jan, 2017 1 commit
-
-
Robert Maynard authored
-
- 23 Sep, 2016 1 commit
-
-
David DeMarle authored
generated via: cd $VTKSRC perl Utilities/Doxygen/doc_header2doxygen.pl --to ~/tmp/vtkheaders . cp -r ~/tmp/vtkheaders/* .
-
- 07 Jul, 2016 2 commits
-
-
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.
-
- 25 May, 2016 1 commit
-
-
Kitware Robot authored
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.
-
- 08 Mar, 2016 1 commit
-
-
Kitware Robot authored
Code extracted from: https://gitlab.kitware.com/third-party/proj.git at commit 41bdf05361007f8c5186f3df9944d86bb273ed13 (for/vtk).
-
- 15 Apr, 2015 1 commit
-
-
Dan Lipsa authored
-
- 18 Dec, 2014 1 commit
-
-
Sean McBride authored
Used the following command: find . \( -iname *.h -and -type f \) -exec perl -pi -w -e 's/__vtk(.*)_h/vtk$1_h/g;' {} \; Fixes many, but not all, clang -Wreserved-id-macro warnings. Change-Id: I694ff053cb204c70e37b261296f496064d91fc07
-
- 09 Apr, 2012 2 commits
-
-
VTK Developers authored
Include the module-wide header from every header in each module. Reference the export/visibility macro for the module. Co-Author: Marcus D. Hanwell <marcus.hanwell@kitware.com> Co-Author: Chris Harris <chris.harris@kitware.com>
-
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>
-
- 06 Aug, 2010 1 commit
-
-
Robert Maynard authored
The EnSight readers in ParaView are stable enough to replace the old readers in VTK.
-
- 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.
-
- 28 Sep, 2009 1 commit
-
-
Utkarsh Ayachit authored
multiple successive (unnecessarily immediately successive but as long as in forward order) time steps in the same EnSight geometry file.
-
- 22 Sep, 2009 1 commit
-
-
Zhanping Liu authored
multiple successive (unnecessarily immediately successive but as long as in forward order) time steps in the same EnSight geometry file.
-
- 29 Apr, 2008 1 commit
-
-
Utkarsh Ayachit authored
ENH: vtkExtractArraysOverTime names the blocks based on which cell/pt they represent. BUG: Fixes BUG #6262. Fixed all extract selection filters to pass global ids. BUG: If composite dataset has no names, use default values
-
- 27 Mar, 2008 1 commit
-
-
Berk Geveci authored
-
- 26 Mar, 2008 1 commit
-
-
Berk Geveci authored
-
- 15 Feb, 2008 1 commit
-
-
Utkarsh Ayachit authored
redesign can be found at http://www.vtk.org/Wiki/VTK/Composite_Data_Redesign.
-
- 23 Oct, 2007 1 commit
-
-
Amy Squillacote authored
ENH: adding support for nfaced elements (through vtkConvexPointSet) and using quadratic cells rather than skipping non-vertex points
-
- 30 Aug, 2007 1 commit
-
-
Amy Squillacote authored
ENH: Handle leading whitespace in ES6 ascii geometry files. Also handle the case where the list of time values is on a different line from the "time values" label.
-
- 03 Apr, 2007 1 commit
-
-
Amy Squillacote authored
ENH: moving recent EnSight changes to the 2.6 branch (especially handling static geometry with time-varying variables
-
- 05 Mar, 2007 1 commit
-
-
Berk Geveci authored
-
- 08 Jan, 2007 1 commit
-
-
John Biddiscombe authored
ENH: Fix a problem caused by a 1 based offset instead of 0 based when reading particles (vertex type data). new SetParticleCoordinatesByIndex flag can be used to toggle between 0 and 1 based indices
-
- 04 Apr, 2006 1 commit
-
-
John Biddiscombe authored
ENH:Make access to internal file names public so that an application can query properties after UpdateInformation has been called. Currently Ensight Readers don't set much information up during the updateinformation pass.
-
- 29 Sep, 2005 1 commit
-
-
Berk Geveci authored
ENH: Added new data types. Restructure of composite datasets. vtkMultiGroupDataSet is the new superclass with two subclasses: vtkMultiBlockDataSet and vtkHierarchicalDataSet
-
- 14 Sep, 2005 1 commit
-
-
Amy Squillacote authored
ENH: (addressing part 1 of bug #2109) Change EnSight readers to output a composite data set instead of multiple data sets. This removes the need to call Update on an EnSight reader before connecting it to a filter.
-
- 19 Oct, 2004 1 commit
-
-
Mathieu Malaterre authored
1. More const correctness when possible 2. Handle 'partial' and 'undef' keyword as specified in EnSight handbook, Section 2.5, pages 2-106/2-110
-
- 17 May, 2004 1 commit
-
-
Ken Martin authored
-
- 11 May, 2004 1 commit
-
-
Amy Squillacote authored
-
- 14 Nov, 2003 1 commit
-
-
Will Schroeder authored
-
- 02 Jun, 2003 1 commit
-
-
Berk Geveci authored
-
- 15 Apr, 2003 1 commit
-
-
Brad King authored
ENH: Added vtkDataArraySelection-based API for array selection. Deprecated older AddVariableName-based API. Also fixed memory allocation of CellIds array.
-
- 01 Sep, 2002 1 commit
-
-
Andy Cedilnik authored
-
- 20 Jun, 2002 1 commit
-
-
Amy Squillacote authored
checking that then number of outputs didn't decrease and that the type of each output didn't change; initializing NumberOf... for each variable type
-
- 12 Jun, 2002 1 commit
-
-
Berk Geveci authored
-