32 #ifndef __vtkThresholdPoints_h
33 #define __vtkThresholdPoints_h
47 void ThresholdByLower(
double lower);
51 void ThresholdByUpper(
double upper);
55 void ThresholdBetween(
double lower,
double upper);
94 int Lower(
double s) {
return ( s <= this->LowerThreshold ? 1 : 0 );};
95 int Upper(
double s) {
return ( s >= this->UpperThreshold ? 1 : 0 );};
96 int Between(
double s) {
return ( s >= this->LowerThreshold ?
97 ( s <= this->UpperThreshold ? 1 : 0 ) : 0 );};
virtual int FillInputPortInformation(int port, vtkInformation *info)
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
#define VTKFILTERSCORE_EXPORT
#define vtkGetMacro(name, type)
#define vtkTypeMacro(thisClass, superclass)
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
extracts points whose scalar value satisfies threshold criterion
int OutputPointsPrecision
#define vtkSetMacro(name, type)