- 03 Feb, 2011 1 commit
-
-
William McLendon authored
-
- 08 Aug, 2010 1 commit
-
-
Andy Wilson authored
InsertNextRow(vtkVariantArray) was transferring numeric values from the input to the row data by calling SetTuple1(value.ToDouble()). This corrupted the low-order bits of 64-bit integers due to loss of precision. We avoid this by using the new SetVariantValue method on vtkAbstractArray.
-
- 13 Jul, 2010 1 commit
-
-
Philippe Pébay authored
-
- 20 May, 2010 1 commit
-
-
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
-
-
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.
-
- 22 Sep, 2009 1 commit
-
-
Utkarsh Ayachit authored
-
- 20 Aug, 2009 2 commits
-
-
Philippe Pebay authored
-
Jeff Baumes authored
- Added Dump() method to vtkSelection much like that in vtkTable. - I reversed the call structure of vtkTable's Set/GetValue methods, so that it is now possible to set/get values in columns with no name assigned to them.
-
- 01 Jul, 2009 1 commit
-
-
Brian Wylie authored
-
- 25 Jun, 2009 1 commit
-
-
Jeff Baumes authored
vtkApplyIcons, much like vtkApplyColors, defines the icon indices for elements of a dataset through a lookup table, default icon, annotations, and/or the current selection. There are a number of places that specify attribute types (point, cell, vertex, edge, row, field) and create an enumeration for this (vtkDataObjectToTable, vtkSelectionNode, ...). A new method GetAttributes(int) in vtkDataObject uses an enum for the possible attribute types and subclasses retrieve the appropriate attributes. GetAttributesAsFieldData(int) performs the same function but returns a vtkFieldData instance instead of vtkDataSetAttributes. GetAttributeTypeForArray is another convenience method that returns the attribute type that an array is contained in.
-
- 29 May, 2009 1 commit
-
-
William McLendon authored
ENH: Added handling for vtkUnicodeStringArray in SetValueByName() and added a failover condition that prints a warning if it couldn't match the column to any types rather than quietly doing nothing and exiting.
-
- 06 May, 2009 2 commits
-
-
Jason Shepherd authored
-
Jason Shepherd authored
-
- 04 May, 2009 1 commit
-
-
Timothy M. Shead authored
-
- 18 Dec, 2008 1 commit
-
-
Utkarsh Ayachit authored
DeepCopy. This was causing issues with ParaView when plotting. Fixed that by explicitly calling Modified() in these methods. We may want to investigate simply moving this Modified() call to vtkDataObject.
-
- 20 Oct, 2008 1 commit
-
-
Francois Bertel authored
-
- 14 Oct, 2008 3 commits
-
-
Philippe Pebay authored
-
Philippe Pebay authored
-
Philippe Pebay authored
-
- 09 Oct, 2008 2 commits
-
-
Philippe Pebay authored
-
Philippe Pebay authored
column width. This method somewhat emulates MySQL's style.
-
- 21 Jul, 2008 1 commit
-
-
Jeff Baumes authored
-
- 17 Jul, 2008 1 commit
-
-
Jeff Baumes authored
ENH: Now using an instance of vtkDataSetAttributes (RowData) in vtkTable to store table columns. All code referencing the FieldData needed to be changed to use RowData. vtkAlgorithm's SetInputArrayToProcess, vtkTableReader/Writer, and vtkSelection's field type, needed to be updated to handle row data.
-
- 25 Jun, 2008 2 commits
-
-
Jeff Baumes authored
-
Jeff Baumes authored
-
- 18 Apr, 2008 1 commit
-
-
Jeff Baumes authored
-
- 28 Jan, 2008 1 commit
-
-
Jeff Baumes authored
ENH: Changing GetRow() to not return a new instance, and changing dependent code to not call Delete() on the returned array.
-
- 19 Aug, 2007 1 commit
-
-
Utkarsh Ayachit authored
-
- 10 Aug, 2007 1 commit
-
-
Jeff Baumes authored
-
- 18 Jun, 2007 1 commit
-
-
Jeff Baumes authored
-
- 05 Apr, 2007 1 commit
-
-
Jeff Baumes authored
ENH: Added default piece and extent information to the constructor of vtkAbstractGraph and vtkTable.
-
- 20 Dec, 2006 1 commit
-
-
Timothy M. Shead authored
ENH: Created vtkGraphReader, vtkGraphWriter, vtkTableReader, vtkTableWriter, vtkTreeReader, and vtkTreeWriter classes for serializing infovis data structures ENH: Created vtkGenericDataObjectReader and vtkGenericDataObjectWriter classes which can serialize any vtkDataObject derivative (the entire object, not just the fields)
-
- 21 Nov, 2006 1 commit
-
-
Jeff Baumes authored
-
- 15 Nov, 2006 1 commit
-
-
Brian Wylie authored
-
- 20 Oct, 2006 1 commit
-
-
Jeff Baumes authored
ENH: In vtkTable, GetValue() returns vtkVariant of the appropriate type. ENH: Rolled back workaround for TestDelimitedTextReader; hopefully the operator << fix worked. ENH: Added two more infovis tests, Table and VariantArray.
-
- 05 Oct, 2006 1 commit
-
-
Jeff Baumes authored
ENH: Initial version of Infovis kit. Also added some classes to vtkCommon, vtkFiltering, vtkRendering, vtkIO, and added freerange to Utilities.
-