- 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
-
- 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).
-
- 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
-
- 02 May, 2013 1 commit
-
-
David Thompson authored
This commit provides an interface for querying the range of values taken on by a vtkPlot's X- and Y-axis inputs. This can be used to determine whether log-scaling is appropriate for each axis of the plot. It is part of a fix to ParaView bug 13899. Change-Id: Ia0449ca496dd935fb4ca25dc5dd2b691d2f89d93
-
- 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>
-
- 20 May, 2011 2 commits
-
-
Marcus D. Hanwell authored
This function returned int, but it is much more appropriate to use vtkIdType here. Change-Id: Ib2bc735dcd1d9f447b855013ad18c4e3befcc18d
-
Marcus D. Hanwell authored
This function returned int, but it is much more appropriate to use vtkIdType here. Change-Id: Ib2bc735dcd1d9f447b855013ad18c4e3befcc18d
-
- 31 Dec, 2010 1 commit
-
-
Marcus D. Hanwell authored
Change-Id: I5479ca46ebbe1e0eb95e9f21f4ba8f0b172545e1
-
- 24 Dec, 2010 1 commit
-
-
Marcus D. Hanwell authored
Specify the legend area using the vtkRectf data type. Change-Id: Icf9c101bc5705e9fa11a431d91b059a930d77716
-
- 24 Sep, 2010 1 commit
-
-
Marcus D. Hanwell authored
This class was not even using parent, and could use the base method now.
-
- 24 Jun, 2010 1 commit
-
-
Keith Fieldhouse authored
The Stacked Plot API has been updated to be consistent with the Stacked Bar Graph API. In particular, a stacked plot is self contained, each data series is added to the plot with SetInputArray.
-
- 22 Jun, 2010 1 commit
-
-
Keith Fieldhouse authored
For vtkPlotBar, SetInputArray can be used to identify input series' beyond index 1. When this is done, each additional series will be plotted on top of the previous series as a stacked bar plot. To handle this change, vtkPlot now handles multiple labels that can be associated with each of the plots. PaintLegend and GetNearestPoint have been adjusted to deal with this properly.
-
- 24 May, 2010 1 commit
-
-
Keith Fieldhouse authored
A series of StackedPlots may be added to a ChartXY and they will be drawn stacked (and filled) on top of each other. Only the actual values need be supplied, the Plot and Chart deal with offsetting the plot for stacking.
-
- 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.
-
- 28 Apr, 2010 1 commit
-
-
Marcus D. Hanwell authored
The line plot provides a super set of what the plot of points required. vtkLinePlot now inherits from vtkPlotPoints, and most of the functionality is in the vtkPlotPoints class. The functionality of vtkLinePlot remains mostly unaffected, but the vtkPlotPoints has gained many of the additional features that were added to the line plot.
-
- 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.
-
- 01 Dec, 2009 1 commit
-
-
Marcus Hanwell authored
-
- 27 Nov, 2009 1 commit
-
-
Marcus 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.
-