Section: Visualization Toolkit Graphics Classes
To create an instance of class vtkMergeFilter, simply invoke its constructor as follows
obj = vtkMergeFilter
obj
is an instance of the vtkMergeFilter class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkMergeFilter = obj.NewInstance ()
vtkMergeFilter = obj.SafeDownCast (vtkObject o)
obj.SetGeometry (vtkDataSet input)
- Specify object from which to extract geometry information.
Old style. Use SetGeometryConnection() instead.
vtkDataSet = obj.GetGeometry ()
- Specify object from which to extract geometry information.
Old style. Use SetGeometryConnection() instead.
obj.SetGeometryConnection (vtkAlgorithmOutput algOutput)
- Specify object from which to extract scalar information.
Old style. Use SetScalarsConnection() instead.
obj.SetScalars (vtkDataSet )
- Specify object from which to extract scalar information.
Old style. Use SetScalarsConnection() instead.
vtkDataSet = obj.GetScalars ()
- Specify object from which to extract scalar information.
Old style. Use SetScalarsConnection() instead.
obj.SetScalarsConnection (vtkAlgorithmOutput algOutput)
- Set / get the object from which to extract vector information.
Old style. Use SetVectorsConnection() instead.
obj.SetVectors (vtkDataSet )
- Set / get the object from which to extract vector information.
Old style. Use SetVectorsConnection() instead.
vtkDataSet = obj.GetVectors ()
- Set / get the object from which to extract vector information.
Old style. Use SetVectorsConnection() instead.
obj.SetVectorsConnection (vtkAlgorithmOutput algOutput)
- Set / get the object from which to extract normal information.
Old style. Use SetNormalsConnection() instead.
obj.SetNormals (vtkDataSet )
- Set / get the object from which to extract normal information.
Old style. Use SetNormalsConnection() instead.
vtkDataSet = obj.GetNormals ()
- Set / get the object from which to extract normal information.
Old style. Use SetNormalsConnection() instead.
obj.SetNormalsConnection (vtkAlgorithmOutput algOutput)
- Set / get the object from which to extract texture coordinates
information.
Old style. Use SetTCoordsConnection() instead.
obj.SetTCoords (vtkDataSet )
- Set / get the object from which to extract texture coordinates
information.
Old style. Use SetTCoordsConnection() instead.
vtkDataSet = obj.GetTCoords ()
- Set / get the object from which to extract texture coordinates
information.
Old style. Use SetTCoordsConnection() instead.
obj.SetTCoordsConnection (vtkAlgorithmOutput algOutput)
- Set / get the object from which to extract tensor data.
Old style. Use SetTensorsConnection() instead.
obj.SetTensors (vtkDataSet )
- Set / get the object from which to extract tensor data.
Old style. Use SetTensorsConnection() instead.
vtkDataSet = obj.GetTensors ()
- Set / get the object from which to extract tensor data.
Old style. Use SetTensorsConnection() instead.
obj.SetTensorsConnection (vtkAlgorithmOutput algOutput)
- Set the object from which to extract a field and the name
of the field. Note that this does not create pipeline
connectivity.
obj.AddField (string name, vtkDataSet input)
- Set the object from which to extract a field and the name
of the field. Note that this does not create pipeline
connectivity.