This project is mirrored from https://gitlab.kitware.com/vtk/vtk-m.git.
Pull mirroring updated .
- 21 Aug, 2013 1 commit
-
-
David Gobbi authored
This patch modifies classes that broke the "rule of three", which states that classes that declare a destructor must also declare a copy constructor and assigment operator. Change-Id: I06b1bb45b493e80e0bae0e8668aa09f494b8056e
-
- 31 Jul, 2013 1 commit
-
-
Sean McBride authored
Their declaration violates the 'rule of 3' and was causing compiler warnings with clang's -Wdeprecated in C++11. Change-Id: I959d582deea4ceccc69684be32dccd3521f54807
-
- 11 May, 2012 1 commit
-
-
Yuanxin Liu authored
The main change is to remove the use of vtkTemporalDataSet and move the support of multiple temporal data sets from the execution pipeline to filters. To be specific, - Before, a filter can request objects from multiple time steps by setting the key UPDATE_TIME_STEPS to a vector of doubles; the resulting objects get wrapped by the pipeline into a single vtkTemporalDataSet object. - After, a filter can only ask for a single time step from the pipeline by setting the key UPDATE_TIME_STEP to a single double. The "wrapping" no longer happens. If a filter want to request multiple time steps, it needs to either inherit from vtkMultiTimeStepAlgorithm or use the CONTINUE_EXECUTION to loop the upstream pipeline and store the data from each iteration. The following key changes/constants are backward incompatible: vtkStreamingDemandDrivenPipeline::UPDATE_TIME_STEPS(() -> vtkStreamingDemandDrivenPipeline::UPDATE_TIME_STEP((), vtkMultiStepAlgorithm::UPATE_TIME_STEPS() vtkStreamingDemandDrivenPipeline::PREVIOUS_UPDATE_TIME_STEPS() -> vtkStreamingDemandDrivenPipeline::PREVIOUS_UPDATE_TIME_STEP() deleted: vtkCompositeDataPipeline::REQUIRES_TIME_DOWNSTREAM() depreicated: VTK_TIME_EXTENT Change-Id: I635b6401ae4f0a7ea7c4b5c466ced40ee75963c7
-
- 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>
-
- 07 Mar, 2012 1 commit
-
-
Kyle Lutz authored
This fixes a number of misspellings in the comments of the source files in VTK/IO. The misspellings were found using the codespell tool. Change-Id: I4e6c9689fac5a4123584251080d96704ed4b6b83
-
- 13 Dec, 2011 1 commit
-
-
Marcus D. Hanwell authored
The vtkstd forwarding headers are deprecated, move to using the STL headers directly. Change-Id: Iaeb5ea0c10d40b8e934b6a8ca18f28c3b022b924
-
- 16 Nov, 2011 1 commit
-
-
Brad King authored
Commit c145092a (ENH: Major update to the OpenFOAM reader from Takuya Oshima, 2010-01-08) updated vtkOpenFOAMReader from a version developed outside of VTK. The outside version used a preprocessor test against vtksys_DATE_STAMP_FULL (from KWSys DateStamp) that is unnecessary when built inside VTK. Change-Id: Iffb77766301d3abbcd339b8c76769d78d5bf8d47
-
- 28 Sep, 2011 1 commit
-
-
Marcus D. Hanwell authored
The OpenFOAM private class should not be exporting its symbols. Change-Id: I1122355dd81ff7faed02c167cf70a119dc63da53
-
- 19 Aug, 2011 1 commit
-
-
David Partyka authored
Change-Id: I88b47c95a04c15ebe242dc289b6f5bc27540e150
-
- 21 Jul, 2011 1 commit
-
-
Kyle Lutz authored
This fixes bug #12318. Change-Id: I90e7ecb60dd3abdda33597f4a3e84a8be2a59683
-
- 12 Jul, 2011 1 commit
-
-
Kyle Lutz authored
This fixes bug #12318. Change-Id: I90e7ecb60dd3abdda33597f4a3e84a8be2a59683
-
- 16 Mar, 2011 1 commit
-
-
Takuya Oshima authored
Fixes 0011974.
-
- 08 Sep, 2010 1 commit
-
-
Sven Buijssen authored
-
- 13 Jul, 2010 1 commit
-
-
Takuya OSHIMA authored
The OpenFOAM reader used vtkDataArrayTemplate::Resize() in order to extend allocated memory space since the function has allocated more memory space than requested when the requested size was larger than the original size. However, with commit c869c3d5 , the function now produces an array of the exact requested size. The behavioral change caused the reader heavy repetitive resizings. Signed-off-by:
David Partyka <dave.partyka@kitware.com>
-
- 21 May, 2010 1 commit
-
-
Hua Yang authored
-
- 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.
-
- 14 May, 2010 1 commit
-
-
Mark Olesen authored
- #includeIfPresent directive: as per #include, but fails silently if the file does not exist - support the $FOAM_CASENAME expansion, which is roughly equivalent to the basename of $FOAM_CASE - #inputMode default is equivalent to #inputMode merge (not error) with OpenFOAM-1.6 - some provisioning for #inputMode (protect|warn), but not yet implemented
-
- 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.
-
- 13 Apr, 2010 1 commit
-
-
Hua Yang authored
ENH: Combined Takuya's OpenFoamReader patch for loading polyhedron. Also changed clip and contour codes of vtkPolyhedron.
-
- 12 Jan, 2010 1 commit
-
-
Dave Partyka authored
-
- 11 Jan, 2010 1 commit
-
-
Dave Partyka authored
-
- 08 Jan, 2010 2 commits
-
-
Berk Geveci authored
-
Berk Geveci authored
-
- 05 Dec, 2008 2 commits
-
-
Berk Geveci authored
-
Berk Geveci authored
* fixed warnings reported on the dashboard ("declaration of dict shadows a previous local") * fixed array/mesh region selection status in state file being discarded (important fix to load the following state files) * fixed failure in loading certain types of meshes
-
- 04 Dec, 2008 3 commits
-
-
Berk Geveci authored
-
David Cole authored
-
Berk Geveci authored
-
- 21 Jul, 2008 1 commit
-
-
David Cole authored
ENH: Merge changes from main tree into VTK-5-2 branch. (cvs -q up -j1.12 -j1.13 IO/vtkOpenFOAMReader.cxx)
-
- 17 Jun, 2008 1 commit
-
-
Sean McBride authored
-
- 24 Apr, 2008 1 commit
-
-
David Cole authored
-
- 15 Feb, 2008 1 commit
-
-
Utkarsh Ayachit authored
redesign can be found at http://www.vtk.org/Wiki/VTK/Composite_Data_Redesign.
-
- 15 Aug, 2007 1 commit
-
-
David Cole authored
BUG: Fix bug 1953: replace strstream use with stringstream now that kwsys provides stringstream on all platforms. Many thanks to Sean McBride and Mathieu Coursolle from Rogue Research for all their effort developing the patch (and patience in waiting for its commit...!). COMP: Eliminate performance warning in generated Java wrappers regarding jboolean cast to bool. ENH: Exclude Java and Python wrappers (in addition to already excluded Tcl wrappers) from coverage analysis.
-
- 18 Jan, 2007 2 commits
-
-
Berk Geveci authored
-
Berk Geveci authored
-
- 18 Dec, 2006 1 commit
-
-
Berk Geveci authored
-
- 06 Dec, 2006 1 commit
-
-
Berk Geveci authored
-
- 22 Nov, 2006 1 commit
-
-
Berk Geveci authored
-
- 21 Nov, 2006 1 commit
-
-
Berk Geveci authored
ENH: Adding the fluent, openfoam and mfix readers again. Hopefully, all of the compile issues are now fixed.
-
- 04 Oct, 2006 1 commit
-
-
Berk Geveci authored
-