30#ifndef vtkThresholdTable_h
31#define vtkThresholdTable_h
33#include "vtkInfovisCoreModule.h"
47 ACCEPT_GREATER_THAN = 1,
60 vtkSetClampMacro(Mode,
int, 0, 3);
61 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).
void ThresholdBetween(vtkVariant lower, vtkVariant upper)
Criterion is rows whose scalars are between lower and upper thresholds (inclusive of the end values).
A atomic type representing the union of many types.