#include <vtkVolumeRayCastFunction.h>
Inheritance diagram for vtkVolumeRayCastFunction:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | FunctionInitialize (vtkRenderer *ren, vtkVolume *vol, VTKRayCastVolumeInfo *volumeInfo, vtkVolumeRayCastMapper *mapper) |
virtual void | CastRay (VTKRayCastRayInfo *rayInfo, VTKRayCastVolumeInfo *volumeInfo)=0 |
virtual float | GetZeroOpacityThreshold (vtkVolume *vol)=0 |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkVolumeRayCastFunction * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkVolumeRayCastFunction () | |
~vtkVolumeRayCastFunction () | |
vtkVolumeRayCastFunction (const vtkVolumeRayCastFunction &) | |
void | operator= (const vtkVolumeRayCastFunction &) |
virtual void | SpecificFunctionInitialize (vtkRenderer *ren, vtkVolume *vol, VTKRayCastVolumeInfo *volumeInfo, vtkVolumeRayCastMapper *mapper)=0 |
vtkVolumeRayCastFunction is a superclass for ray casting functions that can be used within a vtkVolumeRayCastMapper. This includes for example, vtkVolumeRayCastCompositeFunction, vtkVolumeRayCastMIPFunction, and vtkVolumeRayCastIsosurfaceFunction.
Definition at line 68 of file vtkVolumeRayCastFunction.h.
|
Definition at line 92 of file vtkVolumeRayCastFunction.h. |
|
Definition at line 93 of file vtkVolumeRayCastFunction.h. |
|
Definition at line 94 of file vtkVolumeRayCastFunction.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 vtkObject. Reimplemented in vtkVolumeRayCastCompositeFunction, vtkVolumeRayCastIsosurfaceFunction, and vtkVolumeRayCastMIPFunction. |
|
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 vtkObject. Reimplemented in vtkVolumeRayCastCompositeFunction, vtkVolumeRayCastIsosurfaceFunction, and vtkVolumeRayCastMIPFunction. |
|
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 vtkObject. Reimplemented in vtkVolumeRayCastCompositeFunction, vtkVolumeRayCastIsosurfaceFunction, and vtkVolumeRayCastMIPFunction. |
|
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 vtkObject. Reimplemented in vtkVolumeRayCastCompositeFunction, vtkVolumeRayCastIsosurfaceFunction, and vtkVolumeRayCastMIPFunction. |
|
Do the basic initialization. This includes saving the parameters passed in into local variables, as well as grabbing some useful info from the volume property and normal encoder. This initialize routine is called once per render. It also calls the SpecificFunctionInitialize of the subclass function. BTX |
|
Reimplemented in vtkVolumeRayCastCompositeFunction, vtkVolumeRayCastIsosurfaceFunction, and vtkVolumeRayCastMIPFunction. |
|
Get the value below which all scalar values are considered to have 0 opacity. Reimplemented in vtkVolumeRayCastCompositeFunction, vtkVolumeRayCastIsosurfaceFunction, and vtkVolumeRayCastMIPFunction. |
|
Definition at line 95 of file vtkVolumeRayCastFunction.h. |
|
This method gives the subclass a chance to do any special initialization that it may need to do BTX Reimplemented in vtkVolumeRayCastCompositeFunction, vtkVolumeRayCastIsosurfaceFunction, and vtkVolumeRayCastMIPFunction. |