#include <vtkThresholdPoints.h>
Inheritance diagram for vtkThresholdPoints:
vtkThresholdPoints is a filter that extracts points from a dataset that satisfy a threshold criterion. The criterion can take three forms: 1) greater than a particular value; 2) less than a particular value; or 3) between a particular value. The output of the filter is polygonal data.
Definition at line 37 of file vtkThresholdPoints.h.
Public Types | |
typedef vtkPolyDataAlgorithm | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | ThresholdByLower (double lower) |
void | ThresholdByUpper (double upper) |
void | ThresholdBetween (double lower, double upper) |
virtual double | GetUpperThreshold () |
virtual double | GetLowerThreshold () |
Static Public Member Functions | |
static vtkThresholdPoints * | New () |
static int | IsTypeOf (const char *type) |
static vtkThresholdPoints * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkThresholdPoints () | |
~vtkThresholdPoints () | |
virtual int | RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *) |
virtual int | FillInputPortInformation (int port, vtkInformation *info) |
int | Lower (double s) |
int | Upper (double s) |
int | Between (double s) |
Protected Attributes | |
double | LowerThreshold |
double | UpperThreshold |
int(vtkThresholdPoints::* | ThresholdFunction )(double s) |
|
Reimplemented from vtkPolyDataAlgorithm. Definition at line 41 of file vtkThresholdPoints.h. |
|
|
|
Definition at line 64 of file vtkThresholdPoints.h. |
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkPolyDataAlgorithm. |
|
Reimplemented from vtkPolyDataAlgorithm. |
|
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 vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkPolyDataAlgorithm. |
|
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 vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkPolyDataAlgorithm. |
|
Reimplemented from vtkPolyDataAlgorithm. |
|
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 vtkPolyDataAlgorithm. |
|
Criterion is cells whose scalars are less or equal to lower threshold. |
|
Criterion is cells whose scalars are greater or equal to upper threshold. |
|
Criterion is cells whose scalars are between lower and upper thresholds (inclusive of the end values). |
|
Get the upper and lower thresholds. |
|
Criterion is cells whose scalars are between lower and upper thresholds (inclusive of the end values). |
|
This is called by the superclass. This is the method you should override. Reimplemented from vtkPolyDataAlgorithm. |
|
Fill the input port information objects for this algorithm. This is invoked by the first call to GetInputPortInformation for each port so subclasses can specify what they can handle. Reimplemented from vtkPolyDataAlgorithm. |
|
Definition at line 78 of file vtkThresholdPoints.h. |
|
Definition at line 79 of file vtkThresholdPoints.h. |
|
Definition at line 80 of file vtkThresholdPoints.h. |
|
Definition at line 71 of file vtkThresholdPoints.h. |
|
Definition at line 72 of file vtkThresholdPoints.h. |
|
|