25 #ifndef __vtkTableToStructuredGrid_h
26 #define __vtkTableToStructuredGrid_h
28 #include "vtkFiltersGeneralModule.h"
29 #include "vtkStructuredGridAlgorithm.h"
38 void PrintSelf(ostream& os, vtkIndent indent);
43 vtkSetVector6Macro(WholeExtent,
int);
44 vtkGetVector6Macro(WholeExtent,
int);
49 vtkSetStringMacro(XColumn);
50 vtkGetStringMacro(XColumn);
57 vtkSetClampMacro(XComponent,
int, 0, VTK_INT_MAX);
58 vtkGetMacro(XComponent,
int);
64 vtkSetStringMacro(YColumn);
65 vtkGetStringMacro(YColumn);
71 vtkSetClampMacro(YComponent,
int, 0, VTK_INT_MAX);
72 vtkGetMacro(YComponent,
int);
78 vtkSetStringMacro(ZColumn);
79 vtkGetStringMacro(ZColumn);
85 vtkSetClampMacro(ZComponent,
int, 0, VTK_INT_MAX);
86 vtkGetMacro(ZComponent,
int);
94 int Convert(vtkTable*, vtkStructuredGrid*,
int extent[6]);
97 virtual int FillInputPortInformation(
int port, vtkInformation* info);
101 virtual int RequestData(vtkInformation* request,
102 vtkInformationVector** inputVector, vtkInformationVector* outputVector);
107 virtual int RequestInformation(vtkInformation *vtkNotUsed(request),
108 vtkInformationVector **vtkNotUsed(inputVector),
109 vtkInformationVector *outputVector);
converts vtkTable to a vtkStructuredGrid.