#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) |
void | EvaluateGradient (float x[3], float g[3]) |
unsigned long | GetMTime () |
void | AddFunction (vtkImplicitFunction *in) |
void | RemoveFunction (vtkImplicitFunction *in) |
vtkImplicitFunctionCollection * | GetFunction () |
float | EvaluateFunction (float x[3]) |
float | EvaluateFunction (float x, float y, float z) |
virtual void | SetOperationType (int) |
virtual int | GetOperationType () |
void | SetOperationTypeToUnion () |
void | SetOperationTypeToIntersection () |
void | SetOperationTypeToDifference () |
void | SetOperationTypeToUnionOfMagnitudes () |
const char * | GetOperationTypeAsString () |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkImplicitBoolean * | SafeDownCast (vtkObject *o) |
vtkImplicitBoolean * | New () |
Protected Methods | |
vtkImplicitBoolean () | |
~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.
Definition at line 79 of file vtkImplicitBoolean.h.
|
|
|
|
|
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 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. |
|
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. |
|
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. |
|
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. |
|
Default boolean method is union. Reimplemented from vtkObject. |
|
Evaluate boolean combinations of implicit function using current operator. Reimplemented from vtkImplicitFunction. |
|
Evaluate boolean combinations of implicit function using current operator. Reimplemented from vtkImplicitFunction. Definition at line 92 of file vtkImplicitBoolean.h. |
|
Evaluate gradient of boolean combination. Reimplemented from vtkImplicitFunction. |
|
Override modified time retrieval because of object dependencies. Reimplemented from vtkImplicitFunction. |
|
Add another implicit function to the list of functions. |
|
Remove a function from the list of implicit functions to boolean. |
|
Return the collection of implicit functions. Definition at line 109 of file vtkImplicitBoolean.h. |
|
Specify the type of boolean operation. |
|
Specify the type of boolean operation. |
|
Specify the type of boolean operation. Definition at line 115 of file vtkImplicitBoolean.h. |
|
Specify the type of boolean operation. Definition at line 117 of file vtkImplicitBoolean.h. |
|
Specify the type of boolean operation. Definition at line 119 of file vtkImplicitBoolean.h. |
|
Specify the type of boolean operation. Definition at line 121 of file vtkImplicitBoolean.h. |
|
Return the boolean operation type as a descriptive character string. Definition at line 140 of file vtkImplicitBoolean.h. |
|
Definition at line 130 of file vtkImplicitBoolean.h. |
|
Definition at line 132 of file vtkImplicitBoolean.h. |