Section: Visualization Toolkit Graphics Classes
To create an instance of class vtkThresholdPoints, simply invoke its constructor as follows
obj = vtkThresholdPoints
obj is an instance of the vtkThresholdPoints class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkThresholdPoints = obj.NewInstance ()
vtkThresholdPoints = obj.SafeDownCast (vtkObject o)
obj.ThresholdByLower (double lower) - Criterion is cells whose scalars are less or equal to lower threshold.
obj.ThresholdByUpper (double upper) - Criterion is cells whose scalars are greater or equal to upper threshold.
obj.ThresholdBetween (double lower, double upper) - Criterion is cells whose scalars are between lower and upper thresholds
(inclusive of the end values).
obj.SetUpperThreshold (double ) - Set/Get the upper threshold.
double = obj.GetUpperThreshold () - Set/Get the upper threshold.
obj.SetLowerThreshold (double ) - Set/Get the lower threshold.
double = obj.GetLowerThreshold () - Set/Get the lower threshold.