commit 52e308acb8265e019db973197e1a4c857f58e8d4 Author: Utkarsh Ayachit Date: Fri Jun 4 09:50:47 2010 -0400 vtkSplineFilter not naming tcoords array. Fixed that. diff --git a/Graphics/vtkSplineFilter.cxx b/Graphics/vtkSplineFilter.cxx index 5f449a9..83d3a02 100644 --- a/Graphics/vtkSplineFilter.cxx +++ b/Graphics/vtkSplineFilter.cxx @@ -124,6 +124,7 @@ int vtkSplineFilter::RequestData( newTCoords = vtkFloatArray::New(); newTCoords->SetNumberOfComponents(2); newTCoords->Allocate(numNewPts); + newTCoords->SetName("TCoords"); outPD->CopyTCoordsOff(); } outPD->InterpolateAllocate(pd,numNewPts);