Go to the documentation of this file.
32 #ifndef vtkThresholdPoints_h
33 #define vtkThresholdPoints_h
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 );};
int OutputPointsPrecision
static vtkThresholdPoints * New()
virtual int FillInputPortInformation(int port, vtkInformation *info)
#define vtkTypeMacro(thisClass, superclass)
void PrintSelf(ostream &os, vtkIndent indent)
#define VTKFILTERSCORE_EXPORT
a simple class to control print indentation
void ThresholdByLower(double lower)
extracts points whose scalar value satisfies threshold criterion
#define vtkGetMacro(name, type)
vtkSetMacro(IgnoreDriverBugs, bool)
void ThresholdByUpper(double upper)
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Superclass for algorithms that produce only polydata as output.
void ThresholdBetween(double lower, double upper)