17#ifndef vtkThresholdTable_h 
   18#define vtkThresholdTable_h 
   20#include "vtkInfovisCoreModule.h"  
   24VTK_ABI_NAMESPACE_BEGIN
 
   35    ACCEPT_GREATER_THAN = 1,
 
   48  vtkSetClampMacro(Mode, 
int, 0, 3);
 
   49  vtkGetMacro(Mode, 
int);
 
a simple class to control print indentation
 
virtual void Modified()
Update the modification time for this object.
 
Superclass for algorithms that produce only vtkTables as output.
 
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
 
virtual vtkVariant GetMinValue()
The minimum value for the threshold.
 
virtual void SetMinValue(vtkVariant v)
The minimum value for the threshold.
 
void SetMaxValue(double v)
The maximum value for the threshold as a double.
 
void SetMinValue(double v)
The minimum value for the threshold as a double.
 
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
 
virtual vtkVariant GetMaxValue()
The maximum value for the threshold.
 
virtual void SetMaxValue(vtkVariant v)
The maximum value for the threshold.
 
static vtkThresholdTable * New()
 
~vtkThresholdTable() override
 
void ThresholdBetween(double lower, double upper)
Criterion is rows whose scalars are between lower and upper thresholds (inclusive of the end values).
 
bool IsValueAcceptable(vtkVariant value)
Return true if value, converted to double, matches the criteria of the current Mode.
 
void ThresholdBetween(vtkVariant lower, vtkVariant upper)
Criterion is rows whose scalars are between lower and upper thresholds (inclusive of the end values).
 
A type representing the union of many types.