Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

vtkDataObjectToDataSetFilter Class Reference

map field data to concrete dataset. More...

#include <vtkDataObjectToDataSetFilter.h>

Inheritance diagram for vtkDataObjectToDataSetFilter:

Inheritance graph
[legend]
Collaboration diagram for vtkDataObjectToDataSetFilter:

Collaboration graph
[legend]
List of all members.

Public Methods

virtual const char * GetClassName ()
virtual int IsA (const char *type)
void PrintSelf (ostream &os, vtkIndent indent)
void SetInput (vtkDataObject *input)
vtkDataObjectGetInput ()
void SetDataSetType (int)
virtual int GetDataSetType ()
void SetDataSetTypeToPolyData ()
void SetDataSetTypeToStructuredPoints ()
void SetDataSetTypeToStructuredGrid ()
void SetDataSetTypeToRectilinearGrid ()
void SetDataSetTypeToUnstructuredGrid ()
vtkDataSetGetOutput ()
vtkDataSetGetOutput (int idx)
vtkPolyDataGetPolyDataOutput ()
vtkStructuredPointsGetStructuredPointsOutput ()
vtkStructuredGridGetStructuredGridOutput ()
vtkUnstructuredGridGetUnstructuredGridOutput ()
vtkRectilinearGridGetRectilinearGridOutput ()
void SetPointComponent (int comp, char *arrayName, int arrayComp, int min, int max, int normalize)
void SetPointComponent (int comp, char *arrayName, int arrayComp)
const char * GetPointComponentArrayName (int comp)
int GetPointComponentArrayComponent (int comp)
int GetPointComponentMinRange (int comp)
int GetPointComponentMaxRange (int comp)
int GetPointComponentNormailzeFlag (int comp)
void SetVertsComponent (char *arrayName, int arrayComp, int min, int max)
void SetVertsComponent (char *arrayName, int arrayComp)
const char * GetVertsComponentArrayName ()
int GetVertsComponentArrayComponent ()
int GetVertsComponentMinRange ()
int GetVertsComponentMaxRange ()
void SetLinesComponent (char *arrayName, int arrayComp, int min, int max)
void SetLinesComponent (char *arrayName, int arrayComp)
const char * GetLinesComponentArrayName ()
int GetLinesComponentArrayComponent ()
int GetLinesComponentMinRange ()
int GetLinesComponentMaxRange ()
void SetPolysComponent (char *arrayName, int arrayComp, int min, int max)
void SetPolysComponent (char *arrayName, int arrayComp)
const char * GetPolysComponentArrayName ()
int GetPolysComponentArrayComponent ()
int GetPolysComponentMinRange ()
int GetPolysComponentMaxRange ()
void SetStripsComponent (char *arrayName, int arrayComp, int min, int max)
void SetStripsComponent (char *arrayName, int arrayComp)
const char * GetStripsComponentArrayName ()
int GetStripsComponentArrayComponent ()
int GetStripsComponentMinRange ()
int GetStripsComponentMaxRange ()
void SetCellTypeComponent (char *arrayName, int arrayComp, int min, int max)
void SetCellTypeComponent (char *arrayName, int arrayComp)
const char * GetCellTypeComponentArrayName ()
int GetCellTypeComponentArrayComponent ()
int GetCellTypeComponentMinRange ()
int GetCellTypeComponentMaxRange ()
void SetCellConnectivityComponent (char *arrayName, int arrayComp, int min, int max)
void SetCellConnectivityComponent (char *arrayName, int arrayComp)
const char * GetCellConnectivityComponentArrayName ()
int GetCellConnectivityComponentArrayComponent ()
int GetCellConnectivityComponentMinRange ()
int GetCellConnectivityComponentMaxRange ()
virtual void SetDefaultNormalize (int)
virtual int GetDefaultNormalize ()
virtual void DefaultNormalizeOn ()
virtual void DefaultNormalizeOff ()
virtual void SetDimensions (int, int, int)
virtual void SetDimensions (int[3])
virtual int * GetDimensions ()
virtual void GetDimensions (int data[3])
virtual void SetOrigin (float, float, float)
virtual void SetOrigin (float[3])
virtual float * GetOrigin ()
virtual void GetOrigin (float data[3])
virtual void SetSpacing (float, float, float)
virtual void SetSpacing (float[3])
virtual float * GetSpacing ()
virtual void GetSpacing (float data[3])
void SetDimensionsComponent (char *arrayName, int arrayComp, int min, int max)
void SetDimensionsComponent (char *arrayName, int arrayComp)
void SetSpacingComponent (char *arrayName, int arrayComp, int min, int max)
void SetSpacingComponent (char *arrayName, int arrayComp)
void SetOriginComponent (char *arrayName, int arrayComp, int min, int max)
void SetOriginComponent (char *arrayName, int arrayComp)

Static Public Methods

vtkDataObjectToDataSetFilter * New ()
int IsTypeOf (const char *type)
vtkDataObjectToDataSetFilter * SafeDownCast (vtkObject *o)

Protected Methods

 vtkDataObjectToDataSetFilter ()
 ~vtkDataObjectToDataSetFilter ()
 vtkDataObjectToDataSetFilter (const vtkDataObjectToDataSetFilter &)
void operator= (const vtkDataObjectToDataSetFilter &)
void Execute ()
void ExecuteInformation ()
void ComputeInputUpdateExtents (vtkDataObject *output)
void SetArrayName (char *&name, char *newName)
int ConstructPoints (vtkPointSet *ps)
int ConstructPoints (vtkRectilinearGrid *rg)
int ConstructCells (vtkPolyData *pd)
int ConstructCells (vtkUnstructuredGrid *ug)
vtkCellArrayConstructCellArray (vtkDataArray *da, int comp, int compRange[2])
void ConstructDimensions ()
void ConstructSpacing ()
void ConstructOrigin ()

Protected Attributes

char Updating
int DataSetType
char * PointArrays [3]
int PointArrayComponents [3]
int PointComponentRange [3][2]
int PointNormalize [3]
char * VertsArray
int VertsArrayComponent
int VertsComponentRange [2]
char * LinesArray
int LinesArrayComponent
int LinesComponentRange [2]
char * PolysArray
int PolysArrayComponent
int PolysComponentRange [2]
char * StripsArray
int StripsArrayComponent
int StripsComponentRange [2]
char * CellTypeArray
int CellTypeArrayComponent
int CellTypeComponentRange [2]
char * CellConnectivityArray
int CellConnectivityArrayComponent
int CellConnectivityComponentRange [2]
int DefaultNormalize
int Dimensions [3]
float Origin [3]
float Spacing [3]
char * DimensionsArray
int DimensionsArrayComponent
int DimensionsComponentRange [2]
char * OriginArray
int OriginArrayComponent
int OriginComponentRange [2]
char * SpacingArray
int SpacingArrayComponent
int SpacingComponentRange [2]

Detailed Description

map field data to concrete dataset.

Date:
2000/12/10 20:08:33
Revision:
1.17

vtkDataObjectToDataSetFilter is an class that maps a data object (i.e., a field) into a concrete dataset, i.e., gives structure to the field by defining a geometry and topology.

To use this filter you associate components in the input field data with portions of the output dataset. (A component is an array of values from the field.) For example, you would specify x-y-z points by assigning components from the field for the x, then y, then z values of the points. You may also have to specify component ranges (for each z-y-z) to make sure that the number of x, y, and z values is the same. Also, you may want to normalize the components which helps distribute the data uniformly. Once you've setup the filter to combine all the pieces of data into a specified dataset (the geometry, topology, point and cell data attributes), the various output methods (e.g., GetPolyData()) are used to retrieve the final product.

This filter is often used in conjunction with vtkFieldDataToAttributeDataFilter. vtkFieldDataToAttributeDataFilter takes field data and transforms it into attribute data (e.g., point and cell data attributes such as scalars and vectors). To do this, use this filter which constructs a concrete dataset and passes the input data object field data to its output. and then use vtkFieldDataToAttributeDataFilter to generate the attribute data associated with the dataset.

Warning:
Make sure that the data you extract is consistent. That is, if you have N points, extract N x, y, and z components. Also, all the information necessary to define a dataset must be given. For example, vtkPolyData requires points at a minimum; vtkStructuredPoints requires setting the dimensions; vtkStructuredGrid requires defining points and dimensions; vtkUnstructuredGrid requires setting points; and vtkRectilinearGrid requires that you define the x, y, and z-coordinate arrays (by specifying points) as well as the dimensions.
Warning:
If you wish to create a dataset of just points (i.e., unstructured points dataset), create vtkPolyData consisting of points. There will be no cells in such a dataset.
See also:
vtkDataObject vtkFieldData vtkDataSet vtkPolyData vtkStructuredPoints vtkStructuredGrid vtkUnstructuredGrid vtkRectilinearGrid vtkDataSetAttributes vtkScalars vtkDataArray
Examples:
vtkDataObjectToDataSetFilter (examples)

Definition at line 109 of file vtkDataObjectToDataSetFilter.h.


Constructor & Destructor Documentation

vtkDataObjectToDataSetFilter::vtkDataObjectToDataSetFilter   [protected]
 

vtkDataObjectToDataSetFilter::~vtkDataObjectToDataSetFilter   [protected]
 

vtkDataObjectToDataSetFilter::vtkDataObjectToDataSetFilter const vtkDataObjectToDataSetFilter &    [inline, protected]
 

Definition at line 269 of file vtkDataObjectToDataSetFilter.h.


Member Function Documentation

vtkDataObjectToDataSetFilter* vtkDataObjectToDataSetFilter::New   [static]
 

Instantiate object with no start, end, or progress methods.

Reimplemented from vtkSource.

virtual const char* vtkDataObjectToDataSetFilter::GetClassName   [virtual]
 

Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkSource.

int vtkDataObjectToDataSetFilter::IsTypeOf const char *    type [static]
 

Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkSource.

virtual int vtkDataObjectToDataSetFilter::IsA const char *    type [virtual]
 

Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkSource.

vtkDataObjectToDataSetFilter* vtkDataObjectToDataSetFilter::SafeDownCast vtkObject   o [static]
 

Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkSource.

void vtkDataObjectToDataSetFilter::PrintSelf ostream &    os,
vtkIndent    indent
[virtual]
 

Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from vtkSource.

void vtkDataObjectToDataSetFilter::SetInput vtkDataObject   input
 

Set the input to the filter.

vtkDataObject* vtkDataObjectToDataSetFilter::GetInput  
 

void vtkDataObjectToDataSetFilter::SetDataSetType int   
 

Control what type of data is generated for output.

virtual int vtkDataObjectToDataSetFilter::GetDataSetType   [virtual]
 

void vtkDataObjectToDataSetFilter::SetDataSetTypeToPolyData   [inline]
 

Definition at line 123 of file vtkDataObjectToDataSetFilter.h.

void vtkDataObjectToDataSetFilter::SetDataSetTypeToStructuredPoints   [inline]
 

Definition at line 125 of file vtkDataObjectToDataSetFilter.h.

void vtkDataObjectToDataSetFilter::SetDataSetTypeToStructuredGrid   [inline]
 

Definition at line 127 of file vtkDataObjectToDataSetFilter.h.

void vtkDataObjectToDataSetFilter::SetDataSetTypeToRectilinearGrid   [inline]
 

Definition at line 129 of file vtkDataObjectToDataSetFilter.h.

void vtkDataObjectToDataSetFilter::SetDataSetTypeToUnstructuredGrid   [inline]
 

Definition at line 131 of file vtkDataObjectToDataSetFilter.h.

vtkDataSet* vtkDataObjectToDataSetFilter::GetOutput  
 

Get the output in different forms. The particular method invoked should be consistent with the SetDataSetType() method. (Note: GetOutput() will always return a type consistent with SetDataSetType(). Also, GetOutput() will return NULL if the filter aborted due to inconsistent data.)

vtkDataSet* vtkDataObjectToDataSetFilter::GetOutput int    idx [inline]
 

Reimplemented from vtkSource.

Definition at line 140 of file vtkDataObjectToDataSetFilter.h.

vtkPolyData* vtkDataObjectToDataSetFilter::GetPolyDataOutput  
 

vtkStructuredPoints* vtkDataObjectToDataSetFilter::GetStructuredPointsOutput  
 

vtkStructuredGrid* vtkDataObjectToDataSetFilter::GetStructuredGridOutput  
 

vtkUnstructuredGrid* vtkDataObjectToDataSetFilter::GetUnstructuredGridOutput  
 

vtkRectilinearGrid* vtkDataObjectToDataSetFilter::GetRectilinearGridOutput  
 

void vtkDataObjectToDataSetFilter::SetPointComponent int    comp,
char *    arrayName,
int    arrayComp,
int    min,
int    max,
int    normalize
 

Define the component of the field to be used for the x, y, and z values of the points. Note that the parameter comp must lie between (0,2) and refers to the x-y-z (i.e., 0,1,2) components of the points. To define the field component to use you can specify an array name and the component in that array. The (min,max) values are the range of data in the component you wish to extract. (This method should be used for vtkPolyData, vtkUnstructuredGrid, vtkStructuredGrid, and vtkRectilinearGrid.) A convenience method, SetPointComponent(),is also provided which does not require setting the (min,max) component range or the normalize flag (normalize is set to DefaulatNormalize value).

void vtkDataObjectToDataSetFilter::SetPointComponent int    comp,
char *    arrayName,
int    arrayComp
[inline]
 

Definition at line 161 of file vtkDataObjectToDataSetFilter.h.

const char* vtkDataObjectToDataSetFilter::GetPointComponentArrayName int    comp
 

int vtkDataObjectToDataSetFilter::GetPointComponentArrayComponent int    comp
 

int vtkDataObjectToDataSetFilter::GetPointComponentMinRange int    comp
 

int vtkDataObjectToDataSetFilter::GetPointComponentMaxRange int    comp
 

int vtkDataObjectToDataSetFilter::GetPointComponentNormailzeFlag int    comp
 

void vtkDataObjectToDataSetFilter::SetVertsComponent char *    arrayName,
int    arrayComp,
int    min,
int    max
 

Define cell connectivity when creating vtkPolyData. You can define vertices, lines, polygons, and/or triangle strips via these methods. These methods are similar to those for defining points, except that no normalization of the data is possible. Basically, you need to define an array of values that (for each cell) includes the number of points per cell, and then the cell connectivity. (This is the vtk file format described in in the textbook or User's Guide.)

void vtkDataObjectToDataSetFilter::SetVertsComponent char *    arrayName,
int    arrayComp
[inline]
 

Definition at line 177 of file vtkDataObjectToDataSetFilter.h.

const char* vtkDataObjectToDataSetFilter::GetVertsComponentArrayName  
 

int vtkDataObjectToDataSetFilter::GetVertsComponentArrayComponent  
 

int vtkDataObjectToDataSetFilter::GetVertsComponentMinRange  
 

int vtkDataObjectToDataSetFilter::GetVertsComponentMaxRange  
 

void vtkDataObjectToDataSetFilter::SetLinesComponent char *    arrayName,
int    arrayComp,
int    min,
int    max
 

void vtkDataObjectToDataSetFilter::SetLinesComponent char *    arrayName,
int    arrayComp
[inline]
 

Definition at line 184 of file vtkDataObjectToDataSetFilter.h.

const char* vtkDataObjectToDataSetFilter::GetLinesComponentArrayName  
 

int vtkDataObjectToDataSetFilter::GetLinesComponentArrayComponent  
 

int vtkDataObjectToDataSetFilter::GetLinesComponentMinRange  
 

int vtkDataObjectToDataSetFilter::GetLinesComponentMaxRange  
 

void vtkDataObjectToDataSetFilter::SetPolysComponent char *    arrayName,
int    arrayComp,
int    min,
int    max
 

void vtkDataObjectToDataSetFilter::SetPolysComponent char *    arrayName,
int    arrayComp
[inline]
 

Definition at line 191 of file vtkDataObjectToDataSetFilter.h.

const char* vtkDataObjectToDataSetFilter::GetPolysComponentArrayName  
 

int vtkDataObjectToDataSetFilter::GetPolysComponentArrayComponent  
 

int vtkDataObjectToDataSetFilter::GetPolysComponentMinRange  
 

int vtkDataObjectToDataSetFilter::GetPolysComponentMaxRange  
 

void vtkDataObjectToDataSetFilter::SetStripsComponent char *    arrayName,
int    arrayComp,
int    min,
int    max
 

void vtkDataObjectToDataSetFilter::SetStripsComponent char *    arrayName,
int    arrayComp
[inline]
 

Definition at line 198 of file vtkDataObjectToDataSetFilter.h.

const char* vtkDataObjectToDataSetFilter::GetStripsComponentArrayName  
 

int vtkDataObjectToDataSetFilter::GetStripsComponentArrayComponent  
 

int vtkDataObjectToDataSetFilter::GetStripsComponentMinRange  
 

int vtkDataObjectToDataSetFilter::GetStripsComponentMaxRange  
 

void vtkDataObjectToDataSetFilter::SetCellTypeComponent char *    arrayName,
int    arrayComp,
int    min,
int    max
 

Define cell types and cell connectivity when creating unstructured grid data. These methods are similar to those for defining points, except that no normalization of the data is possible. Basically, you need to define an array of cell types (an integer value per cell), and another array consisting (for each cell) of a number of points per cell, and then the cell connectivity. (This is the vtk file format described in in the textbook or User's Guide.)

void vtkDataObjectToDataSetFilter::SetCellTypeComponent char *    arrayName,
int    arrayComp
[inline]
 

Definition at line 214 of file vtkDataObjectToDataSetFilter.h.

const char* vtkDataObjectToDataSetFilter::GetCellTypeComponentArrayName  
 

int vtkDataObjectToDataSetFilter::GetCellTypeComponentArrayComponent  
 

int vtkDataObjectToDataSetFilter::GetCellTypeComponentMinRange  
 

int vtkDataObjectToDataSetFilter::GetCellTypeComponentMaxRange  
 

void vtkDataObjectToDataSetFilter::SetCellConnectivityComponent char *    arrayName,
int    arrayComp,
int    min,
int    max
 

void vtkDataObjectToDataSetFilter::SetCellConnectivityComponent char *    arrayName,
int    arrayComp
[inline]
 

Definition at line 222 of file vtkDataObjectToDataSetFilter.h.

const char* vtkDataObjectToDataSetFilter::GetCellConnectivityComponentArrayName  
 

int vtkDataObjectToDataSetFilter::GetCellConnectivityComponentArrayComponent  
 

int vtkDataObjectToDataSetFilter::GetCellConnectivityComponentMinRange  
 

int vtkDataObjectToDataSetFilter::GetCellConnectivityComponentMaxRange  
 

virtual void vtkDataObjectToDataSetFilter::SetDefaultNormalize int    [virtual]
 

Set the default Normalize() flag for those methods setting a default Normalize value (e.g., SetPointComponent).

virtual int vtkDataObjectToDataSetFilter::GetDefaultNormalize   [virtual]
 

virtual void vtkDataObjectToDataSetFilter::DefaultNormalizeOn   [virtual]
 

virtual void vtkDataObjectToDataSetFilter::DefaultNormalizeOff   [virtual]
 

virtual void vtkDataObjectToDataSetFilter::SetDimensions int   ,
int   ,
int   
[virtual]
 

Specify the dimensions to use if generating a dataset that requires dimensions specification (vtkStructuredPoints, vtkStructuredGrid, vtkRectilinearGrid).

virtual void vtkDataObjectToDataSetFilter::SetDimensions int   [3] [virtual]
 

virtual int* vtkDataObjectToDataSetFilter::GetDimensions   [virtual]
 

virtual void vtkDataObjectToDataSetFilter::GetDimensions int    data[3] [virtual]
 

virtual void vtkDataObjectToDataSetFilter::SetOrigin float   ,
float   ,
float   
[virtual]
 

Specify the origin to use if generating a dataset whose origin can be set (i.e., a vtkStructuredPoints dataset).

virtual void vtkDataObjectToDataSetFilter::SetOrigin float   [3] [virtual]
 

virtual float* vtkDataObjectToDataSetFilter::GetOrigin   [virtual]
 

virtual void vtkDataObjectToDataSetFilter::GetOrigin float    data[3] [virtual]
 

virtual void vtkDataObjectToDataSetFilter::SetSpacing float   ,
float   ,
float   
[virtual]
 

Specify the spacing to use if generating a dataset whose spacing can be set (i.e., a vtkStructuredPoints dataset).

virtual void vtkDataObjectToDataSetFilter::SetSpacing float   [3] [virtual]
 

virtual float* vtkDataObjectToDataSetFilter::GetSpacing   [virtual]
 

virtual void vtkDataObjectToDataSetFilter::GetSpacing float    data[3] [virtual]
 

void vtkDataObjectToDataSetFilter::SetDimensionsComponent char *    arrayName,
int    arrayComp,
int    min,
int    max
 

Alternative methods to specify the dimensions, spacing, and origin for those datasets requiring this information. You need to specify the name of an array; the component of the array, and the range of the array (min,max). These methods will override the information given by the previous methods.

void vtkDataObjectToDataSetFilter::SetDimensionsComponent char *    arrayName,
int    arrayComp
[inline]
 

Definition at line 257 of file vtkDataObjectToDataSetFilter.h.

void vtkDataObjectToDataSetFilter::SetSpacingComponent char *    arrayName,
int    arrayComp,
int    min,
int    max
 

void vtkDataObjectToDataSetFilter::SetSpacingComponent char *    arrayName,
int    arrayComp
[inline]
 

Definition at line 260 of file vtkDataObjectToDataSetFilter.h.

void vtkDataObjectToDataSetFilter::SetOriginComponent char *    arrayName,
int    arrayComp,
int    min,
int    max
 

void vtkDataObjectToDataSetFilter::SetOriginComponent char *    arrayName,
int    arrayComp
[inline]
 

Definition at line 263 of file vtkDataObjectToDataSetFilter.h.

void vtkDataObjectToDataSetFilter::operator= const vtkDataObjectToDataSetFilter &    [inline, protected]
 

Definition at line 270 of file vtkDataObjectToDataSetFilter.h.

void vtkDataObjectToDataSetFilter::Execute   [protected, virtual]
 

Reimplemented from vtkSource.

void vtkDataObjectToDataSetFilter::ExecuteInformation   [protected, virtual]
 

Reimplemented from vtkSource.

void vtkDataObjectToDataSetFilter::ComputeInputUpdateExtents vtkDataObject   output [protected, virtual]
 

What is the input update extent that is required to produce the desired output? By default, the whole input is always required but this is overridden in many subclasses.

Reimplemented from vtkSource.

void vtkDataObjectToDataSetFilter::SetArrayName char *&    name,
char *    newName
[protected]
 

int vtkDataObjectToDataSetFilter::ConstructPoints vtkPointSet   ps [protected]
 

int vtkDataObjectToDataSetFilter::ConstructPoints vtkRectilinearGrid   rg [protected]
 

int vtkDataObjectToDataSetFilter::ConstructCells vtkPolyData   pd [protected]
 

int vtkDataObjectToDataSetFilter::ConstructCells vtkUnstructuredGrid   ug [protected]
 

vtkCellArray* vtkDataObjectToDataSetFilter::ConstructCellArray vtkDataArray   da,
int    comp,
int    compRange[2]
[protected]
 

void vtkDataObjectToDataSetFilter::ConstructDimensions   [protected]
 

void vtkDataObjectToDataSetFilter::ConstructSpacing   [protected]
 

void vtkDataObjectToDataSetFilter::ConstructOrigin   [protected]
 


Member Data Documentation

char vtkDataObjectToDataSetFilter::Updating [protected]
 

Reimplemented from vtkSource.

Definition at line 276 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::DataSetType [protected]
 

Definition at line 279 of file vtkDataObjectToDataSetFilter.h.

char* vtkDataObjectToDataSetFilter::PointArrays[3] [protected]
 

Definition at line 282 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::PointArrayComponents[3] [protected]
 

Definition at line 283 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::PointComponentRange[3][2] [protected]
 

Definition at line 284 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::PointNormalize[3] [protected]
 

Definition at line 285 of file vtkDataObjectToDataSetFilter.h.

char* vtkDataObjectToDataSetFilter::VertsArray [protected]
 

Definition at line 288 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::VertsArrayComponent [protected]
 

Definition at line 289 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::VertsComponentRange[2] [protected]
 

Definition at line 290 of file vtkDataObjectToDataSetFilter.h.

char* vtkDataObjectToDataSetFilter::LinesArray [protected]
 

Definition at line 292 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::LinesArrayComponent [protected]
 

Definition at line 293 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::LinesComponentRange[2] [protected]
 

Definition at line 294 of file vtkDataObjectToDataSetFilter.h.

char* vtkDataObjectToDataSetFilter::PolysArray [protected]
 

Definition at line 296 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::PolysArrayComponent [protected]
 

Definition at line 297 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::PolysComponentRange[2] [protected]
 

Definition at line 298 of file vtkDataObjectToDataSetFilter.h.

char* vtkDataObjectToDataSetFilter::StripsArray [protected]
 

Definition at line 300 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::StripsArrayComponent [protected]
 

Definition at line 301 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::StripsComponentRange[2] [protected]
 

Definition at line 302 of file vtkDataObjectToDataSetFilter.h.

char* vtkDataObjectToDataSetFilter::CellTypeArray [protected]
 

Definition at line 305 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::CellTypeArrayComponent [protected]
 

Definition at line 306 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::CellTypeComponentRange[2] [protected]
 

Definition at line 307 of file vtkDataObjectToDataSetFilter.h.

char* vtkDataObjectToDataSetFilter::CellConnectivityArray [protected]
 

Definition at line 309 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::CellConnectivityArrayComponent [protected]
 

Definition at line 310 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::CellConnectivityComponentRange[2] [protected]
 

Definition at line 311 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::DefaultNormalize [protected]
 

Definition at line 322 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::Dimensions[3] [protected]
 

Definition at line 325 of file vtkDataObjectToDataSetFilter.h.

float vtkDataObjectToDataSetFilter::Origin[3] [protected]
 

Definition at line 326 of file vtkDataObjectToDataSetFilter.h.

float vtkDataObjectToDataSetFilter::Spacing[3] [protected]
 

Definition at line 327 of file vtkDataObjectToDataSetFilter.h.

char* vtkDataObjectToDataSetFilter::DimensionsArray [protected]
 

Definition at line 329 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::DimensionsArrayComponent [protected]
 

Definition at line 330 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::DimensionsComponentRange[2] [protected]
 

Definition at line 331 of file vtkDataObjectToDataSetFilter.h.

char* vtkDataObjectToDataSetFilter::OriginArray [protected]
 

Definition at line 333 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::OriginArrayComponent [protected]
 

Definition at line 334 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::OriginComponentRange[2] [protected]
 

Definition at line 335 of file vtkDataObjectToDataSetFilter.h.

char* vtkDataObjectToDataSetFilter::SpacingArray [protected]
 

Definition at line 337 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::SpacingArrayComponent [protected]
 

Definition at line 338 of file vtkDataObjectToDataSetFilter.h.

int vtkDataObjectToDataSetFilter::SpacingComponentRange[2] [protected]
 

Definition at line 339 of file vtkDataObjectToDataSetFilter.h.


The documentation for this class was generated from the following file:
Generated on Wed Nov 21 12:47:17 2001 for VTK by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001