CVS log for VTK/IO/vtkImageReader2.cxx

[BACK] Up to [VTK] / VTK / IO

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.42: download - view: text, markup, annotated - select for diffs
Tue Jan 15 11:18:06 2008 UTC (7 months, 1 week ago) by malaterre
Branches: MAIN
CVS tags: VTK-DistribGraph-bp, VTK-DistribGraph, VTK-5-2-bp, VTK-5-2-0-rc2, VTK-5-2-0-rc1, VTK-5-2-0, VTK-5-2, HEAD
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +2 -2 lines
STYLE: minor typo

Revision 1.41: download - view: text, markup, annotated - select for diffs
Thu Sep 21 21:23:24 2006 UTC (23 months, 1 week ago) by malaterre
Branches: MAIN
CVS tags: ParaView-RepresentationView-mp-pre, ParaView-RepresentationView-mp-post, ParaView-RepresentationView-mp, ParaView-RepresentationView-bp, ParaView-RepresentationView, ParaView-Crosscompiling-bp, ParaView-Crosscompiling, ParaView-3-2-bp, ParaView-3-2-3, ParaView-3-2-2, ParaView-3-2-1, ParaView-3-2-0, ParaView-3-2, ParaView-3-1-July, ParaView-3-0-bp, ParaView-3-0-2, ParaView-3-0-1, ParaView-3-0, ParaView-2-9-October-bp, ParaView-2-9-October, ParaView-2-9-November-bp, ParaView-2-9-November, ParaView-2-9-March-bp, ParaView-2-9-March, ParaView-2-9-January-bp, ParaView-2-9-January, ParaView-2-9-February-bp, ParaView-2-9-February, ParaView-2-9-December-bp, ParaView-2-9-December, ParaView-2-6-bp, ParaView-2-6-2, ParaView-2-6-1, ParaView-2-6-0, ParaView-2-6, PVEE-ERDC-Setup-4-3-2007-mp1-pre, PVEE-ERDC-Setup-4-3-2007-mp1, PVEE-ERDC-Setup-4-3-2007-bp, PVEE-ERDC-Setup-4-3-2007, OverView-0-9-bp, OverView-0-9, OverView-0-7-bp, OverView-0-7, Hyperion, Andy-MC-Branch-10-2006-bp, Andy-MC-Branch-10-2006, AMC-4-7-2007, AMC-2-15-2007-Deliverable-bp, AMC-2-15-2007-Deliverable, AMC-2-15-2007
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +2 -2 lines
ENH: Backport from VolView-VTK-upstream

Revision 1.40: download - view: text, markup, annotated - select for diffs
Sun Jun 25 19:40:29 2006 UTC (2 years, 2 months ago) by dgobbi
Branches: MAIN
CVS tags: VolViewExternalLib, ParaView-2-9-September-bp, ParaView-2-9-September, ParaView-2-9-June-bp, ParaView-2-9-June, ParaView-2-9-August-bp, ParaView-2-9-August, PVEE-Stable-July-20-2006, PVEE-Stable-Aug-24-2006
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +126 -26 lines
ENH: several related changes:
1. vtkGlobFileNames will list files that match a wildcard pattern.
2. vtkSortSeriesFileNames will sort a list of files alphabetically or numerically.
3. vtkImageReader2 and subclasses can now accept a list of files as input.

Revision 1.39: download - view: text, markup, annotated - select for diffs
Thu Jan 5 18:29:04 2006 UTC (2 years, 7 months ago) by utkarsh
Branches: MAIN
CVS tags: VolView-BeforeFeatures-bp, VolView-BeforeFeatures, VolView-30-bp, VolView-30-Branch, ParaView3-Before-ParaQ-to-ParaView-rename, ParaView3-After-ParaQ-to-ParaView-rename, ParaView-2-9-May-bp, ParaView-2-9-May, ParaQ-BeforeRepositoryRestructure-Mar06, ParaQ-0-9-March-bp, ParaQ-0-9-March, PVEE-Stable-Jan30-2006, PVEE-5-17-2006-stable
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +2 -1 lines
ENH:
* vtkDataArray now has a new superclass-vtkAbstractArray.vtkAbstractArray
provides type-agnostic API to access array elements. vtkDataArray provides
a double API to access values -- such an API is deliberately missing from
vtkAbstractArray, since arrays like string arrays are not castable to doubles.

* vtkAbstractArray has the notion of components/tuples, but does not make
any assumptions about the arragment of these. It's up to the concrete
subclasses how the data is represented in memory.

* vtkFieldData used to provide tuple API to get/set values from data arrays
contained in it. However, now that FieldData can have arrays that are not
vtkDataArrays, this API is not longer valid.
The following are the methods that are no longer available:
double* GetTuple(const vtkIdType);
void SetTuple(const vtkIdType i, const double* tuple);
void GetTuple(const vtkIdType i, double* tuple);
void InsertTuple(const vtkIdType i, const double* tuple);
void InsertNextTuple(cons double*);
double GetComponent(const vtkIdType i, const int j);
void SetComponent(const vtkIdType i, const int j, const double c);
void InsertComponent(const vtkIdType i, const int j, const double c);
However, new API is provided to copy tuples arround from one field data to
another using:
void SetTuple(const vtkIdType i, const vtkIdType j, vtkFieldData* source);
void InsertTuple(const vtkIdType i, const vtkIdType j, vtkFieldData* source);
vtkIdType InsertNextTuple(const vtkIdType j, vtkFieldData* source);

* vtkFieldData provide a vtkDataArray* GetArray(int index) to retrieve arrays
in the field data. This function can will now return a NULL if the array
at the given index is not a data array. It provides
vtkAbstractArray* GetAbstractArray(int index);
to retrieve an array even if it isn't a vtkDataArray.

* Since vtkFieldData can contain arrays that aren't subclasses of
vtkDataArray, so can vtkDataSetAttributes. However, an attribute can only be
a vtkDataArray subclass i.e. one cannot set a vtkStringArray as the SCALARS
array for a Point Data, for example.

* String Array IO is only supported in XML file formats. If deemed important,
support may be added for lecacy file formats.

*** Array Iterators ***
Another addition to the VTK Arrays, is the notion of Array Iterator. A
vtkArrayIterator subclass is be provided for every vtkAbstractArray
subclass. The iterator is a random access iterator. The iterators are not
available in any of the wrapped languages, however, in C++ they can be used to
write templatized code to processes the array values without any implicit type
conversion and consequent loss of precision. vtkArrayIteratorTemplateMacro is
provided to simply switching between different types of the arrays. Examples of
use of this macro and the iterators can be found in
vtkXMLWriter.cxx / vtkXMLDataReader.cxx / vtkXMLStructuredDataReader.cxx.

Revision 1.38: download - view: text, markup, annotated - select for diffs
Fri Aug 19 19:24:58 2005 UTC (3 years ago) by berk
Branches: MAIN
CVS tags: Widgets-Redesign-bp, Widgets-Redesign, VTK-PaintersShaders-mp1-pre, VTK-PaintersShaders-mp1-post, VTK-PaintersShaders-mp1, VTK-PaintersShaders-bp, VTK-PaintersShaders, VTK-5-0-bp, VTK-5-0-4-rc1, VTK-5-0-4, VTK-5-0-3-rc1, VTK-5-0-3, VTK-5-0-2-rc1, VTK-5-0-2, VTK-5-0-1-rc5, VTK-5-0-1-rc4, VTK-5-0-1-rc3, VTK-5-0-1-rc2, VTK-5-0-1-rc1, VTK-5-0-1, VTK-5-0-0-rc1, VTK-5-0, ParaView-2-4-bp, ParaView-2-4-4-1, ParaView-2-4-4, ParaView-2-4-3, ParaView-2-4-2, ParaView-2-4-1, ParaView-2-4-0, ParaView-2-4, PVEE-BeforeAjaxAuthoringAndStateUpdateChanges
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +2 -2 lines
ENH: Deprecated vtkTemplateMacroN(). vtkTemplateMacro() should be used instead

Revision 1.37: download - view: text, markup, annotated - select for diffs
Thu May 26 17:31:06 2005 UTC (3 years, 3 months ago) by malaterre
Branches: MAIN
CVS tags: WebVis-BeforeSecurity-June2005, ParaView-2-2-bp, ParaView-2-2-1, ParaView-2-2-0, ParaView-2-2
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +4 -1 lines
ENH: minor style

Revision 1.36: download - view: text, markup, annotated - select for diffs
Tue May 24 14:07:58 2005 UTC (3 years, 3 months ago) by king
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +11 -31 lines
ENH: Replaced large switch statement case list with vtkTemplateMacro.

Revision 1.35: download - view: text, markup, annotated - select for diffs
Mon May 23 20:39:22 2005 UTC (3 years, 3 months ago) by dgobbi
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +2 -2 lines
ENH: Change vtkImageData::Increments from int to vtkIdType to allow processing of large images

Revision 1.34: download - view: text, markup, annotated - select for diffs
Fri Mar 4 17:08:24 2005 UTC (3 years, 5 months ago) by blue
Branches: MAIN
CVS tags: ParaView-RenderModule2-branch-mp1-pre, ParaView-RenderModule2-branch-mp1-post, ParaView-RenderModule2-branch-mp1, ParaView-RenderModule2-branch, ParaView-RenderModule2, ParaView-InstallSupport-pre, ParaView-InstallSupport-post, ParaView-2-0-bp, ParaView-2-0-InstallSupport-pre, ParaView-2-0-InstallSupport-post, ParaView-2-0-3, ParaView-2-0-2-Sandia, ParaView-2-0-2, ParaView-2-0-1, ParaView-2-0-0, ParaView-2-0
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +3 -4 lines
ENH: SCALAR_TYPE and SCALAR_NUMBER_OF_COMPONENTS removed from the information object... now implemented within the FieldData related fields.

Revision 1.32.2.1: download - view: text, markup, annotated - select for diffs
Wed Mar 2 20:23:18 2005 UTC (3 years, 5 months ago) by atwilso
Branches: VTK-Sandia-InfoViz
Diff to: previous 1.32: preferred, colored; next MAIN 1.33: preferred, colored
Changes since revision 1.32: +9 -3 lines
ENH: Bring IO/ into sync with the trunk before adding strings

Revision 1.33: download - view: text, markup, annotated - select for diffs
Tue Mar 1 20:12:11 2005 UTC (3 years, 5 months ago) by malaterre
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +9 -3 lines
STYLE: Some minor style issues

Revision 1.32: download - view: text, markup, annotated - select for diffs
Thu Jan 20 17:00:17 2005 UTC (3 years, 7 months ago) by henderson
Branches: MAIN
CVS tags: VTK-Sandia-InfoViz-bp
Branch point for: VTK-Sandia-InfoViz
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +4 -3 lines
ENH: adding return type to Request*** methods in vtkImageAlgorithm and subclasses

Revision 1.31: download - view: text, markup, annotated - select for diffs
Sun Nov 21 16:54:12 2004 UTC (3 years, 9 months ago) by martink
Branches: MAIN
CVS tags: ken, WebVis-Demo-Jan-2005, WebVis-Demo-Dec-2004, VTK-RemoveWindowsH-pre, VTK-RemoveWindowsH-post
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +28 -9 lines
ENH: renamed ExecuteInformation to RequestInformation with new signature

Revision 1.29.6.1: download - view: text, markup, annotated - select for diffs
Mon Sep 27 14:56:10 2004 UTC (3 years, 11 months ago) by martink
Branches: VTK-Executives
Diff to: previous 1.29: preferred, colored; next MAIN 1.30: preferred, colored
Changes since revision 1.29: +2 -2 lines
ENH: merges from the main tree

Revision 1.30: download - view: text, markup, annotated - select for diffs
Wed Sep 1 15:16:40 2004 UTC (3 years, 11 months ago) by malaterre
Branches: MAIN
CVS tags: VTK-Executives-merge-pre, VTK-Executives-merge-post, VTK-DeferredGarbageCollection-pre, VTK-DeferredGarbageCollection-post, ParaView-RenderModuleMove-pre, ParaView-RenderModuleMove, ParaView-1-8-bp, ParaView-1-8-5, ParaView-1-8-4, ParaView-1-8-3, ParaView-1-8-2, ParaView-1-8-1, ParaView-1-8-0, ParaView-1-8
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +2 -2 lines
FIX: Make borland even more happier

Revision 1.28.2.1: download - view: text, markup, annotated - select for diffs
Wed Feb 4 15:14:12 2004 UTC (4 years, 6 months ago) by martink
Branches: ParaView-1-2
CVS tags: ParaView-1-2-Sandia-20040308, ParaView-1-2-1
Diff to: previous 1.28: preferred, colored; next MAIN 1.29: preferred, colored
Changes since revision 1.28: +5 -4 lines
minor fix from the main tree

Revision 1.29: download - view: text, markup, annotated - select for diffs
Wed Feb 4 14:51:33 2004 UTC (4 years, 6 months ago) by martink
Branches: MAIN
CVS tags: VTK-before-executives, VTK-Executives-bp, ParaView-1-6-bp, ParaView-1-6-3, ParaView-1-6-2, ParaView-1-6-1, ParaView-1-6, ParaView-1-4-bp, ParaView-1-4-3, ParaView-1-4-2, ParaView-1-4-1, ParaView-1-4-0, ParaView-1-4
Branch point for: VTK-Executives
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +7 -6 lines
fix memory issue

Revision 1.28: download - view: text, markup, annotated - select for diffs
Thu Jan 8 14:27:46 2004 UTC (4 years, 7 months ago) by king
Branches: MAIN
CVS tags: ParaView-1-2-bp, ParaView-1-2-0
Branch point for: ParaView-1-2
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +3 -6 lines
ENH: Updated to new copyright.

Revision 1.27: download - view: text, markup, annotated - select for diffs
Fri Nov 21 18:54:15 2003 UTC (4 years, 9 months ago) by martink
Branches: MAIN
CVS tags: release-4-4-bp, release-4-4-2, release-4-4-1, release-4-4, VTK-Slicer-2-5-bp, VTK-Slicer-2-5, Slicer-2-6-pb, Slicer-2-6-bp, Slicer-2-6, Slicer-2-4
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +3 -12 lines
removed legacy code

Revision 1.24.6.2: download - view: text, markup, annotated - select for diffs
Wed Nov 12 18:04:02 2003 UTC (4 years, 9 months ago) by berk
Branches: ParaView-1-0
Diff to: previous 1.24.6.1: preferred, colored; branchpoint 1.24: preferred, colored; next MAIN 1.25: preferred, colored
Changes since revision 1.24.6.1: +6 -6 lines
Reverted to the original behavior and added a vtkPVImageReader to overwrite the initial values

Revision 1.26: download - view: text, markup, annotated - select for diffs
Wed Jul 23 14:23:57 2003 UTC (5 years, 1 month ago) by andy
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +6 -6 lines
ENH: Revert to fix some tests. Should not be merged at all...

Revision 1.25: download - view: text, markup, annotated - select for diffs
Tue Jul 22 19:27:45 2003 UTC (5 years, 1 month ago) by andy
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +6 -6 lines
ENH: Merge from ParaView 1.0 branch

Revision 1.24.6.1: download - view: text, markup, annotated - select for diffs
Mon Jun 30 20:32:12 2003 UTC (5 years, 1 month ago) by berk
Branches: ParaView-1-0
CVS tags: ParaView-1-0-merge2, ParaView-1-0-merge1, ParaView-1-0-4, ParaView-1-0-3, ParaView-1-0-2, ParaView-1-0-1, ParaView-1-0-0
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +6 -6 lines
Changed the default parameters of the image reader

Revision 1.24: download - view: text, markup, annotated - select for diffs
Thu Dec 26 18:18:50 2002 UTC (5 years, 8 months ago) by andy
Branches: MAIN
CVS tags: rpd_2-0-0-1, release-4-2-bp, release-4-2-6, release-4-2-5, release-4-2-4, release-4-2-3, release-4-2-2, release-4-2-1, release-4-2-0, release-4-2, VolView-20, VTK4-vendor-branch-point, VTK4-vendor-branch-mp1, ParaView-1-0-branch-point, LatestRelease-Branch, LatestRelease
Branch point for: ParaView-1-0
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +4 -3 lines
Add and cleanup of missing includes in IO for cleaning of common headers

Revision 1.23: download - view: text, markup, annotated - select for diffs
Tue Dec 10 20:02:55 2002 UTC (5 years, 8 months ago) by king
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +4 -4 lines
ERR: Need to cast streampos to vtkIdType when used in a vtkGenericWarningMacro.

Revision 1.20.4.1: download - view: text, markup, annotated - select for diffs
Fri Dec 6 17:48:03 2002 UTC (5 years, 8 months ago) by king
Branches: IOSWrapper2
Diff to: previous 1.20: preferred, colored; next MAIN 1.21: preferred, colored
Changes since revision 1.20: +5 -4 lines
ENH: Implementation 2 of ios wrapper.

Revision 1.22: download - view: text, markup, annotated - select for diffs
Mon Nov 25 11:17:08 2002 UTC (5 years, 9 months ago) by biddi
Branches: MAIN
CVS tags: BeforeIOSWrapper
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +11 -15 lines
Replace Open + seek + Tellg with stat() when determining header size

Revision 1.21: download - view: text, markup, annotated - select for diffs
Tue Nov 12 19:44:35 2002 UTC (5 years, 9 months ago) by king
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +11 -3 lines
ENH: vtkImageReader2::MakeObject() is now deprecated.

Revision 1.20.2.3: download - view: text, markup, annotated - select for diffs
Tue Oct 29 16:28:40 2002 UTC (5 years, 10 months ago) by king
Branches: IOSWrapper
Diff to: previous 1.20.2.2: preferred, colored; branchpoint 1.20: preferred, colored; next MAIN 1.21: preferred, colored
Changes since revision 1.20.2.2: +4 -4 lines
ENH: Renamed vtk_ostream to vtkOStream, vtk_istream to vtkIStream, and vtk_ostrstream to vtkOStrStream.

Revision 1.20.2.2: download - view: text, markup, annotated - select for diffs
Tue Oct 29 15:12:35 2002 UTC (5 years, 10 months ago) by king
Branches: IOSWrapper
Diff to: previous 1.20.2.1: preferred, colored; branchpoint 1.20: preferred, colored
Changes since revision 1.20.2.1: +5 -3 lines
ENH: Added include of vtk_iostream.h so that vtkImageReader2.h does not need to include it.

Revision 1.20.2.1: download - view: text, markup, annotated - select for diffs
Tue Oct 29 05:16:12 2002 UTC (5 years, 10 months ago) by king
Branches: IOSWrapper
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +7 -5 lines
ENH: Using iostream wrapper classes to speed up compilation.

Revision 1.20: download - view: text, markup, annotated - select for diffs
Mon Sep 30 20:36:05 2002 UTC (5 years, 10 months ago) by andy
Branches: MAIN
CVS tags: IOSWrapper3, IOSWrapper-bp, Before-XML-IO
Branch point for: IOSWrapper2, IOSWrapper
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +6 -4 lines
Add missing includes for cleaning filtering

Revision 1.19: download - view: text, markup, annotated - select for diffs
Tue Aug 6 19:08:29 2002 UTC (6 years ago) by berk
Branches: MAIN
CVS tags: ParaView-0-6-r1, ParaView-0-6-merge1, ParaView-0-6-branch-point, ParaView-0-6, CMI-Release1-branch, CMI-Release1
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +5 -3 lines
ImageReaders now name their output arrays

Revision 1.18: download - view: text, markup, annotated - select for diffs
Mon Jun 17 14:10:26 2002 UTC (6 years, 2 months ago) by martink
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +4 -5 lines
removed statics

Revision 1.17: download - view: text, markup, annotated - select for diffs
Tue Jun 4 11:19:42 2002 UTC (6 years, 2 months ago) by lorensen
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +4 -4 lines
ERR: bad test for FileName/FilePrefix existence.

Revision 1.16: download - view: text, markup, annotated - select for diffs
Fri May 31 23:13:18 2002 UTC (6 years, 2 months ago) by andy
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +3 -6 lines
Reduce load on the header files; take unnecessary includes out; Add missing includes to the cxx files

Revision 1.15: download - view: text, markup, annotated - select for diffs
Sun Mar 24 20:01:34 2002 UTC (6 years, 5 months ago) by andy
Branches: MAIN
CVS tags: LatestSnapshot
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +4 -4 lines
Remove some warnings on Visual Studio .Net

Revision 1.14.2.1: download - view: text, markup, annotated - select for diffs
Mon Mar 4 22:09:38 2002 UTC (6 years, 5 months ago) by martink
Branches: MC1
Diff to: previous 1.14: preferred, colored; next MAIN 1.15: preferred, colored
Changes since revision 1.14: +4 -4 lines
minor fix

Revision 1.13.2.1: download - view: text, markup, annotated - select for diffs
Wed Feb 20 21:44:00 2002 UTC (6 years, 6 months ago) by martink
Branches: VolView-13-Branch
Diff to: previous 1.13: preferred, colored; next MAIN 1.14: preferred, colored
Changes since revision 1.13: +19 -9 lines
merged

Revision 1.14: download - view: text, markup, annotated - select for diffs
Tue Feb 19 16:30:41 2002 UTC (6 years, 6 months ago) by andy
Branches: MAIN
CVS tags: ParaView-0-4-branch-point, ParaView-0-4
Branch point for: MC1
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +19 -9 lines
ERR: Ok, this should fix the reader to finally work almost properly. I still think vtkImageReaders should be redesigned...

Revision 1.13: download - view: text, markup, annotated - select for diffs
Mon Feb 18 15:38:07 2002 UTC (6 years, 6 months ago) by andy
Branches: MAIN
CVS tags: VolView-13-bp
Branch point for: VolView-13-Branch
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +12 -7 lines
ERR: Fix bug in image reader and image reader 2. Now they don't create empty files when file does not exist. Also, there were some bogus assumptions that file is always opened.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Sat Feb 16 17:57:01 2002 UTC (6 years, 6 months ago) by lorensen
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +15 -3 lines
ERR: several native types were missing.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Fri Feb 1 16:42:19 2002 UTC (6 years, 6 months ago) by hoffman
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +11 -6 lines
BUG: fix check for percent s

Revision 1.10: download - view: text, markup, annotated - select for diffs
Wed Jan 30 22:41:26 2002 UTC (6 years, 6 months ago) by hoffman
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +22 -5 lines
BUG: check for percent s in format string

Revision 1.9: download - view: text, markup, annotated - select for diffs
Tue Jan 22 15:38:14 2002 UTC (6 years, 7 months ago) by will
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +11 -35 lines
ENH:Updated copyright: new year and streamlined

Revision 1.8: download - view: text, markup, annotated - select for diffs
Thu Jan 10 14:35:26 2002 UTC (6 years, 7 months ago) by barre
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +8 -9 lines
FIX: backing up call to ->Set(, but still unroll some loops (mot meant for optim. but parsing).

Revision 1.4.2.2: download - view: text, markup, annotated - select for diffs
Thu Jan 10 14:34:41 2002 UTC (6 years, 7 months ago) by barre
Branches: release-4-0
Diff to: previous 1.4.2.1: preferred, colored; branchpoint 1.4: preferred, colored; next MAIN 1.5: preferred, colored
Changes since revision 1.4.2.1: +8 -9 lines
FIX: backing up call to ->Set(, but still unroll some loops (mot meant for optim. but parsing).

Revision 1.4.2.1: download - view: text, markup, annotated - select for diffs
Wed Jan 9 21:21:48 2002 UTC (6 years, 7 months ago) by barre
Branches: release-4-0
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +12 -12 lines
Shorten some initializations (and made them easier to parse)

Revision 1.7: download - view: text, markup, annotated - select for diffs
Wed Jan 9 21:20:28 2002 UTC (6 years, 7 months ago) by barre
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +14 -15 lines
Shorten some initializations (and made them easier to parse)

Revision 1.6: download - view: text, markup, annotated - select for diffs
Fri Jan 4 14:27:38 2002 UTC (6 years, 7 months ago) by king
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +9 -21 lines
ENH: Three sweeping changes.

1.) vtkTypeRevisionMacro is now used in all VTK classes in place of
    vtkTypeMacro.  It invokes the original vtkTypeMacro and then adds
    a protected CollectRevisions method for future use in serialization.
    A corresponding vtkCxxRevisionMacro has been added to every .cxx file
    to implement the CollectRevisions method for each class.  This will
    allow collection of every class revision at run time.  Any new VTK class
    should use vtkTypeRevisionMacro instead of vtkTypeMacro.  The .cxx
    implementation should then have the following line:
      vtkCxxRevisionMacro(vtkFoo, "$Revision: 1.1 $");
    CVS should insert the correct revision number when the class is commited.

2.) vtkTypeMacro now also adds a typedef called "Superclass" to refer to
    the superclass of any VTK class.  All PrintSelf methods have been
    updated to call their superclass's PrintSelf like this:
      this->Superclass::PrintSelf(os,indent);
    This should reduce the number of places that refer to a superclass
    by its actual name.

3.) The standard ::New() method implementation has been replaced with a
    macro.  Instead of an explicitly written implementation to try the
    object factory and then call the new operator, VTK classes should
    instead use the following macro unless they have a special New() method:
      vtkStandardNewMacro(vtkFoo);
    This will implement the New() method in the standard way.  The line
    should appear in the .cxx implementation file, not in the header.
    Using the macro will make it easier to change the standard
    implementation of the method.

Also removed tabs from many files.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Wed Jan 2 23:00:12 2002 UTC (6 years, 7 months ago) by hoffman
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +19 -7 lines
ENH: make vtkImageReader inherit from vtkImageReader2

Revision 1.4: download - view: text, markup, annotated - select for diffs
Thu Nov 15 14:20:21 2001 UTC (6 years, 9 months ago) by lawcc
Branches: MAIN
CVS tags: release-4-0-bp
Branch point for: release-4-0
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +5 -3 lines
Merging differences between ParaView-0-2-merge1 and ParaView-0-2-merge2

Revision 1.3: download - view: text, markup, annotated - select for diffs
Tue Nov 13 14:30:33 2001 UTC (6 years, 9 months ago) by lorensen
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +18 -18 lines
ENH: replaced TABS with SPACES.

Revision 1.2.6.1: download - view: text, markup, annotated - select for diffs
Mon Nov 12 19:35:45 2001 UTC (6 years, 9 months ago) by lawcc
Branches: ParaView-0-2
CVS tags: ParaView-0-2-merge2
Diff to: previous 1.2: preferred, colored; next MAIN 1.3: preferred, colored
Changes since revision 1.2: +4 -3 lines
Fixed seg faults cause by empty inputs. New test EmptyInput.tcl

Revision 1.2: download - view: text, markup, annotated - select for diffs
Mon Mar 12 19:26:05 2001 UTC (7 years, 5 months ago) by martink
Branches: MAIN
CVS tags: release-3-3-branch-point, release-3-3, pv10-branch, pv10, ParaView-0-2-merge1, ParaView-0-2-branch-point, Kitware-PCD1
Branch point for: ParaView-0-2
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +4 -5 lines
uses ExecuteData now

Revision 1.1: download - view: text, markup, annotated - select for diffs
Thu Mar 8 20:21:04 2001 UTC (7 years, 5 months ago) by martink
Branches: MAIN
CVS tags: MCS_Demo_010401
simplified image reader

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>