- 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
-
- 13 Mar, 2014 1 commit
-
-
Joachim Pouderoux authored
Fix the problem with the position of Y axis: long labels were trunked. This position was fixed, it is not flexible depending the size of the labels. Add new functions to the chart API to allow manipulation of series by id (vs by name). Add support for manual plot labels setting. Enhance the boxplot displacement, it now correctly follow the mouse without ugly jumps. Change-Id: I400cd064616f7b93415e17db9749d709ea2f7345
-
- 18 Feb, 2014 1 commit
-
-
Joachim Pouderoux authored
Change-Id: Ic5c728d45d447fac2678401394717d261dd91d48
-
- 13 Dec, 2013 1 commit
-
-
Joachim Pouderoux authored
Add a new plot type to draw functional bag plots. Add vtkExtractFunctionalBagPlot filter to generate the two 2 components columns needed to fee a functional bag plot. Add a TransposeTable filter to transpose tables, options allow to create a new column containing initial row names, and use such a column to name the new columns. Change-Id: If7fedd9b99038ab7924f5e9b170ed72bd02f9189
-