#include <vtkImplicitBoolean.h>
Inheritance diagram for vtkImplicitBoolean:
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 g[3]) |
unsigned long | GetMTime () |
void | AddFunction (vtkImplicitFunction *in) |
void | RemoveFunction (vtkImplicitFunction *in) |
vtkImplicitFunctionCollection * | GetFunction () |
virtual void | SetOperationType (int) |
virtual int | GetOperationType () |
void | SetOperationTypeToUnion () |
void | SetOperationTypeToIntersection () |
void | SetOperationTypeToDifference () |
void | SetOperationTypeToUnionOfMagnitudes () |
const char * | GetOperationTypeAsString () |
void | AddFunction (vtkImplicitFunction &in) |
void | RemoveFunction (vtkImplicitFunction &in) |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkImplicitBoolean * | SafeDownCast (vtkObject *o) |
vtkImplicitBoolean * | New () |
Protected Methods | |
vtkImplicitBoolean () | |
~vtkImplicitBoolean () | |
vtkImplicitBoolean (const vtkImplicitBoolean &) | |
void | operator= (const vtkImplicitBoolean &) |
Protected Attributes | |
vtkImplicitFunctionCollection * | FunctionList |
int | OperationType |
vtkImplicitBoolean is an implicit function consisting of boolean combinations of implicit functions. The class has a list of functions (FunctionList) that are combined according to a specified operator (VTK_UNION or VTK_INTERSECTION or VTK_DIFFERENCE). You can use nested combinations of vtkImplicitFunction's (and/or vtkImplicitBoolean) to create elaborate implicit functions. vtkImplicitBoolean is a concrete implementation of vtkImplicitFunction.
The operators work as follows. The VTK_UNION operator takes the minimum value of all implicit functions. The VTK_INTERSECTION operator takes the maximum value of all implicit functions. The VTK_DIFFERENCE operator subtracts the 2nd through last implicit functions from the first. The VTK_UNION_OF_MAGNITUDES takes the minimum absolute value of the implicit functions.
|
For legacy compatibility. Do not use. |
|
Add another implicit function to the list of functions. |
|
Evaluate boolean combinations of implicit function using current operator. Implements vtkImplicitFunction. |
|
Evaluate gradient of boolean combination. 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. |
|
Return the collection of implicit functions. |
|
Override modified time retrieval because of object dependencies. Reimplemented from vtkImplicitFunction. |
|
Return the boolean operation type as a descriptive character string. |
|
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. |
|
Default boolean method is union. 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. |
|
Remove a function from the list of implicit functions to boolean. |
|
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 the type of boolean operation. |