- 31 Jan, 2013 1 commit
-
-
brugger authored
I made some more changes for VTK 6.0. Most of the changes work with VTK 5.8 and 6.0, but a few don't and those are conditionaly compiled. I started with versions the Kathleen modified for VTK 6.0 and added conditional compiles for code that wouldn't work with VTK 5.8. The types of changes made were: 1) filter->SetInput(vtkDataObject); to filter->SetInputData(vtkDataObject); 2) virtual void WriteFile(ofstream *, vtkImageData, int ext[6]); virtual void WriteFileHeader(ofstream *, vtkImageData *); to virtual void WriteFile(ofstream *, vtkImageData *, int ext[6], int wExt[6]); virtual void WriteFileHeader(ofstream *, vtkImageData *, int wExt[6]); git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20184 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 30 Jan, 2013 1 commit
-
-
brugger authored
I made some more changes for VTK 6.0. Most of the changes work with VTK 5.8 and 6.0, but a few don't and those are conditionaly compiled. My plan is to remove the VTK 5.8 cases once we have switched, but this allows the changes to be tested. The types of changes made were: 1) filter->SetInput(vtkDataObject); filter->AddInput(vtkDataObvect); filter->RemoveInput(vtkDataObvect); to filter->SetInputData(vtkDataObject); filter->AddInputData(vtkDataObvect); filter->RemoveInputData(vtkDataObvect); 2) filter1->SetInput(filter2->GetOutput()); to filter1->SetInputConnection(filter2->GetOutputPort()); 3) output->GetUpdateGhostLevel(); output->GetUpdateNumberOfPieces(); to outInfo->Get( vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS()); outInfo->Get( vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES()); 4) virtual void WriteFile(ofstream *, vtkImageData, int ext[6]); virtual void WriteFileHeader(ofstream *, vtkImageData *); to virtual void WriteFile(ofstream *, vtkImageData *, int ext[6], int wExt[6]); virtual void WriteFileHeader(ofstream *, vtkImageData *, int wExt[6]); git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20178 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 29 Jan, 2013 2 commits
-
-
brugger authored
I converted all the vtk classes that inherit from vtkUnstructuredGridToUnstructuredGridFilter to inherit from vtkUnstructuredGridAlgorithm, since vtkUnstructuredGridToUnstructuredGridFilter is deprecated and isn't in VTK6. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20163 18c085ea-50e0-402c-830e-de6fd14e8384
-
brugger authored
I converted all the vtk classes that inherit from vtkDataSetToUnstructuredGridFilter to inherit from vtkUnstructuredGridAlgorithm, since vtkDataSetToUnstructuredGridFilter is deprecated and isn't in VTK6. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20161 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 25 Jan, 2013 1 commit
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20152 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 24 Jan, 2013 1 commit
-
-
bonnell authored
Fix compile error caught by Visual Studio (apparently gcc does not catch this). A function with a non-void return type must return a value. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20130 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 23 Jan, 2013 1 commit
-
-
brugger authored
1) I modified all the vtk classes that inherit from vtkRectilinearGridToPolyDataFilter vtkStructuredGridToPolyDataFilter vtkUnstructuredGridToPolyDataFilter to vtkPolyDataAlgorithm since those classes are deprecated and aren't in VTK6. 2) I updated the rzzeus config site file to use Silo 4.9-pre1. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20114 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 22 Jan, 2013 1 commit
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20091 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 10 Jan, 2013 1 commit
-
-
brugger authored
I modified all the vtk classes that inherit from vtDataSetToPolyDataFilter to inherit from vtkPolyDataAlgorithm, since vtkDataSetToPolyDataFilter is deprecated and isn't in VTK6. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19996 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 09 Jan, 2013 2 commits
-
-
brugger authored
I modified all the vtk classes that inherit from vtDataSetaToDataSetFilter to inherit from vtkDataSetAlgorithm, since vtkDataSetToDataSetFilter is deprecated and isn't in VTK6. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19971 18c085ea-50e0-402c-830e-de6fd14e8384
-
brugger authored
I modified all the vtk classes that inherit from vtkPolyDataToPolyDataFilter to inherit from vtkPolyDataAlgorithm, since vtkPolyDataToPolyDataFilter is deprecated and isn't in VTK6. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19965 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 08 Jan, 2013 1 commit
-
-
brugger authored
I eliminated some deprecated VTK coding. In particular: I replaced vtkTypeRevisionMacro with vtkTypeMacro I eliminated vtkCxxRevisionMacro git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19953 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 15 Nov, 2012 1 commit
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19600 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 19 Oct, 2012 1 commit
-
-
hkrishna authored
updating vtkpng vtkjpeg vtktiff vtkfreetype,etc.. to use VTK_PNG_LIBRARIES VTK_JPEG_LIBRARIES, etc.. cmake variables. This is because External VTK builds may use libraries that don't depend on vtk versions git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19396 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 16 Oct, 2012 1 commit
-
-
bonnell authored
Couple of double precision changes to preserve coordinate type, and correct a couple of place where vtkFloatArrays were created, but should have been vtkDoubleArrays. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19378 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 06 Sep, 2012 1 commit
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19132 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 30 Aug, 2012 1 commit
-
-
bonnell authored
Some low-hanging (easy to fix) doble-precision changes to preserve coordinate type, and a small amount of code cleanup (remove unused vars). git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19098 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 14 Aug, 2012 1 commit
-
-
bonnell authored
Modified vtkCracksClipper to inherit from vtkVisItClipper. (resolves #1006) git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19000 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 08 Aug, 2012 2 commits
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18972 18c085ea-50e0-402c-830e-de6fd14e8384
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18971 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 07 Aug, 2012 1 commit
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18965 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 26 Jul, 2012 1 commit
-
-
brugger authored
I made a number of changes to the multi-pass CSG discretization to improve performance. These include: a) I increased the number of boundaries that can be handled from 128 to 512. b) I modified the discretization to perform the partitions against all the boundaries and then create a vtkDataSet at the end rather than creating a new vtkDataSet after partitioning with each boundary. c) I changed the discretization to only process a portion of the mesh on each processor instead of the entire mesh. Previously each processor processed the entire mesh. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18840 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 09 Jul, 2012 2 commits
-
-
js9 authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18712 18c085ea-50e0-402c-830e-de6fd14e8384
-
js9 authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18710 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 30 Apr, 2012 1 commit
-
-
whitlocb authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18004 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 22 Apr, 2012 1 commit
-
-
whitlocb authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@17967 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 13 Apr, 2012 1 commit
-
-
miller86 authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@17922 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 11 Apr, 2012 1 commit
-
-
whitlocb authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@17887 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 06 Mar, 2012 2 commits
-
-
brugger authored
I made some more copyright notice fixes in the src directory. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@17594 18c085ea-50e0-402c-830e-de6fd14e8384
-
brugger authored
I made some more copyright notice fixes in the src directory. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@17593 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 05 Mar, 2012 2 commits
-
-
brugger authored
1) I updated the year in the copyright notice from "2000 - 2011" to "2000 - 2012" in all the "*.h" files in the src directory. 2) I moved a using statement out of a header file and into the appropriate ".C" files. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@17588 18c085ea-50e0-402c-830e-de6fd14e8384
-
brugger authored
I updated the year in the copyright notice from "2000 - 2011" to "2000 - 2012" in all the ".c" and ".C" files in the src directory. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@17584 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 02 Mar, 2012 1 commit
-
-
hrchilds authored
by widening near and far plane in 2D. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@17563 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 30 Jan, 2012 1 commit
-
-
brugger authored
I changed the order in which polygon cells and polygons from solid cells are output in the vtkUnstructuredGridFacelistFilter so that polygon cells are rendered on top of solid cells. While technically not more correct, this gives the result users would expect if a polygon cell was on the face of a solid cell. This fixes all but one test suite failure. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@17235 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 27 Jan, 2012 1 commit
-
-
brugger authored
I modified the vtkUnstructuredGridFacelistFilter to output "faces" in the order - vertex primitives, line primitives, polygon primitives and strip primitives. This was necessary for zone centered data to be colored properly by the pseudocolor plot when the unstructured mesh contained a mixture of these primitive types. This resolves #946. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@17228 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 21 Nov, 2011 1 commit
-
-
whitlocb authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@16821 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 24 Oct, 2011 1 commit
-
-
js9 authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@16513 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 17 Oct, 2011 1 commit
-
-
whitlocb authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@16460 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 03 Oct, 2011 1 commit
-
-
whitlocb authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@16330 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 12 Jul, 2011 1 commit
-
-
miller86 authored
As a consequence, a lot of source files needed fixing up too. There were many cases where source files referred to STL classes but either did not include the cooresponding C++ STL header or did not have a using statement or did not have a 'std::' scope resolution. I added a hook to prevent commits of header files with using statements in them. I added skips for anything in vendor_branches, release and src/third_party_builtin and common/utility/visitstream.h (whose using statements I think define a single symbol name such as cerr or endl). Nonetheless, I still think visitstream.h might bare further scrutiny on this issue. There are a number of other observations I had regarding header file design and usage that I will send to visit-developers in a follow-up email. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@15352 18c085ea-50e0-402c-830e-de6fd14e8384
-