Section: Visualization Toolkit Infovis Classes
To create an instance of class vtkPassThrough, simply invoke its constructor as follows
obj = vtkPassThrough
obj is an instance of the vtkPassThrough class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkPassThrough = obj.NewInstance ()
vtkPassThrough = obj.SafeDownCast (vtkObject o)
int = obj.FillInputPortInformation (int port, vtkInformation info) - Specify the first input port as optional
obj.SetDeepCopyInput (int ) - Whether or not to deep copy the input. This can be useful if you
want to create a copy of a data object. You can then disconnect
this filter's input connections and it will act like a source.
Defaults to OFF.
int = obj.GetDeepCopyInput () - Whether or not to deep copy the input. This can be useful if you
want to create a copy of a data object. You can then disconnect
this filter's input connections and it will act like a source.
Defaults to OFF.
obj.DeepCopyInputOn () - Whether or not to deep copy the input. This can be useful if you
want to create a copy of a data object. You can then disconnect
this filter's input connections and it will act like a source.
Defaults to OFF.
obj.DeepCopyInputOff () - Whether or not to deep copy the input. This can be useful if you
want to create a copy of a data object. You can then disconnect
this filter's input connections and it will act like a source.
Defaults to OFF.