#include <vtkThresholdTextureCoords.h>
Inheritance diagram for vtkThresholdTextureCoords:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | ThresholdByLower (float lower) |
void | ThresholdByUpper (float upper) |
void | ThresholdBetween (float lower, float upper) |
virtual float | GetUpperThreshold () |
virtual float | GetLowerThreshold () |
virtual void | SetTextureDimension (int) |
virtual int | GetTextureDimension () |
virtual void | SetInTextureCoord (float, float, float) |
virtual void | SetInTextureCoord (float[3]) |
virtual float * | GetInTextureCoord () |
virtual void | GetInTextureCoord (float data[3]) |
virtual void | SetOutTextureCoord (float, float, float) |
virtual void | SetOutTextureCoord (float[3]) |
virtual float * | GetOutTextureCoord () |
virtual void | GetOutTextureCoord (float data[3]) |
Static Public Methods | |
vtkThresholdTextureCoords * | New () |
int | IsTypeOf (const char *type) |
vtkThresholdTextureCoords * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkThresholdTextureCoords () | |
~vtkThresholdTextureCoords () | |
vtkThresholdTextureCoords (const vtkThresholdTextureCoords &) | |
void | operator= (const vtkThresholdTextureCoords &) |
void | Execute () |
int | Lower (float s) |
int | Upper (float s) |
int | Between (float s) |
Protected Attributes | |
float | LowerThreshold |
float | UpperThreshold |
int | TextureDimension |
float | InTextureCoord [3] |
float | OutTextureCoord [3] |
int(vtkThresholdTextureCoords::* | ThresholdFunction )(float s) |
vtkThresholdTextureCoords is a filter that generates texture coordinates for any input dataset type given a threshold criterion. The criterion can take three forms: 1) greater than a particular value (ThresholdByUpper()); 2) less than a particular value (ThresholdByLower(); or 3) between two values (ThresholdBetween(). If the threshold criterion is satisfied, the "in" texture coordinate will be set (this can be specified by the user). If the threshold criterion is not satisfied the "out" is set.
Definition at line 72 of file vtkThresholdTextureCoords.h.
|
|
|
Definition at line 109 of file vtkThresholdTextureCoords.h. |
|
Definition at line 110 of file vtkThresholdTextureCoords.h. |
|
Instantiate object with no start, end, or progress methods. Reimplemented from vtkDataSetSource. |
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkDataSetToDataSetFilter. |
|
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 vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkDataSetToDataSetFilter. |
|
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 vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkDataSetToDataSetFilter. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkDataSetToDataSetFilter. |
|
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 vtkSource. |
|
Criterion is cells whose scalars are less than lower threshold. |
|
Criterion is cells whose scalars are less than upper threshold. |
|
Criterion is cells whose scalars are between lower and upper thresholds. |
|
Return the upper and lower thresholds. |
|
|
|
Set the desired dimension of the texture map. |
|
|
|
Set the texture coordinate value for point satisfying threshold criterion. |
|
|
|
|
|
|
|
Set the texture coordinate value for point NOT satisfying threshold criterion. |
|
|
|
|
|
|
|
Definition at line 111 of file vtkThresholdTextureCoords.h. |
|
Reimplemented from vtkSource. |
|
Definition at line 128 of file vtkThresholdTextureCoords.h. |
|
Definition at line 129 of file vtkThresholdTextureCoords.h. |
|
Definition at line 130 of file vtkThresholdTextureCoords.h. |
|
Definition at line 116 of file vtkThresholdTextureCoords.h. |
|
Definition at line 117 of file vtkThresholdTextureCoords.h. |
|
Definition at line 119 of file vtkThresholdTextureCoords.h. |
|
Definition at line 121 of file vtkThresholdTextureCoords.h. |
|
Definition at line 122 of file vtkThresholdTextureCoords.h. |
|
|