- 03 Feb, 2016 1 commit
-
-
Aashish Chaudhary authored
(cherry picked from commit e509a788275dbf99324d721b0998f6a8e61a91e9)
-
- 28 Aug, 2015 1 commit
-
-
T.J. Corona authored
-
- 27 Aug, 2015 1 commit
-
-
Aashish Chaudhary authored
* Since now the API is generic * Will not require downcast * Also updated the var name to reflect API
-
- 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
-
- 12 Nov, 2013 1 commit
-
-
Sean McBride authored
Done using a few regular expressions & find & replace. Fixes many -Wextra-semi warnings. Change-Id: I5ef603e88d4c0a390cfb2d22d8d92c21bf554024
-
- 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>
-
- 07 Mar, 2012 1 commit
-
-
Kyle Lutz authored
This fixes a number of misspellings in the comments of the source files in VTK/VolumeRendering. The misspellings were found using the codespell tool. Change-Id: I114712d4e517accbb5c762bf12b89e627fd0fe02
-
- 03 Sep, 2010 1 commit
-
-
Karthik Krishnan authored
One may optionally, set a mask input. This mask may be a binary mask or a label map. This must be specified via SetMaskType. If the mask is a binary mask, the volume rendering is confined to regions within the binary mask. The binary mask is assumed to have a datatype of UCHAR and values of 255 (inside) and 0 (outside). This is only implemented for the GPU volume mapper. And for the Composite blend case. This will be expanded for the other blend cases in the next commit.
-
- 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.
-
- 26 Feb, 2010 1 commit
-
-
Aashish Chaudhary authored
-
- 25 Feb, 2010 1 commit
-
-
Aashish Chaudhary authored
ENH: Added GPUVolumeRayCastMapper. ENH: Exposed the options to set sampling distance for GPU based volume ray cast mapper. STYLE: Title change for better name. BUG: Attempt to get the volume mapper working in tiled display. STYLE: Added comments about volume rendering on the tile displays. STYLE: Added documentation to the proxy. STYLE: Cleaned the XML. STYLE: Clean up the code. Added documentation for the proxy properties.
-
- 18 Feb, 2010 1 commit
-
-
Lisa Avila authored
-