#include <vtkImplicitWindowFunction.h>
Inheritance diagram for vtkImplicitWindowFunction:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
float | EvaluateFunction (float x[3]) |
float | EvaluateFunction (float x, float y, float z) |
void | EvaluateGradient (float x[3], float n[3]) |
virtual void | SetImplicitFunction (vtkImplicitFunction *) |
virtual vtkImplicitFunction * | GetImplicitFunction () |
virtual void | SetWindowRange (float, float) |
void | SetWindowRange (float[2]) |
virtual float * | GetWindowRange () |
virtual void | GetWindowRange (float data[2]) |
virtual void | SetWindowValues (float, float) |
void | SetWindowValues (float[2]) |
virtual float * | GetWindowValues () |
virtual void | GetWindowValues (float data[2]) |
unsigned long | GetMTime () |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkImplicitWindowFunction * | SafeDownCast (vtkObject *o) |
vtkImplicitWindowFunction * | New () |
Protected Methods | |
vtkImplicitWindowFunction () | |
~vtkImplicitWindowFunction () | |
vtkImplicitWindowFunction (const vtkImplicitWindowFunction &) | |
void | operator= (const vtkImplicitWindowFunction &) |
Protected Attributes | |
vtkImplicitFunction * | ImplicitFunction |
float | WindowRange [2] |
float | WindowValues [2] |
vtkImplicitWindowFunction is used to modify the output of another implicit function to lie within a specified "window", or function range. This can be used to add "thickness" to cutting or clipping functions.
This class works as follows. First, it evaluates the function value of the user-specified implicit function. Then, based on the window range specified, it maps the function value into the window values specified.
|
Evaluate window function. Implements vtkImplicitFunction. |
|
Evaluate window function gradient. Just return implicit function gradient. Implements vtkImplicitFunction. |
|
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 vtkImplicitFunction. |
|
Override modified time retrieval because of object dependencies. Reimplemented from vtkImplicitFunction. |
|
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 vtkImplicitFunction. |
|
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 vtkImplicitFunction. |
|
Construct object with window range (0,1) and window values (0,1). Reimplemented from vtkObject. |
|
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 vtkImplicitFunction. |
|
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 vtkImplicitFunction. |
|
Specify an implicit function to operate on. |
|
Specify the range of function values which are considered to lie within the window. WindowRange[0] is assumed to be less than WindowRange[1]. |
|
Specify the range of output values that the window range is mapped into. This is effectively a scaling and shifting of the original function values. |