VTK
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes
vtkVolumeProperty Class Reference

represents the common properties for rendering a volume. More...

#include <vtkVolumeProperty.h>

Inheritance diagram for vtkVolumeProperty:
Inheritance graph
[legend]
Collaboration diagram for vtkVolumeProperty:
Collaboration graph
[legend]

List of all members.

Public Types

typedef vtkObject Superclass

Public Member Functions

virtual int IsA (const char *type)
vtkVolumePropertyNewInstance () const
void PrintSelf (ostream &os, vtkIndent indent)
void DeepCopy (vtkVolumeProperty *p)
unsigned long GetMTime ()
void UpdateMTimes ()
virtual void SetIndependentComponents (int)
virtual int GetIndependentComponents ()
virtual void IndependentComponentsOn ()
virtual void IndependentComponentsOff ()
virtual void SetInterpolationType (int)
virtual int GetInterpolationType ()
void SetInterpolationTypeToNearest ()
void SetInterpolationTypeToLinear ()
const char * GetInterpolationTypeAsString (void)
virtual void SetComponentWeight (int index, double value)
virtual double GetComponentWeight (int index)
void SetColor (int index, vtkPiecewiseFunction *function)
void SetColor (vtkPiecewiseFunction *function)
void SetColor (int index, vtkColorTransferFunction *function)
void SetColor (vtkColorTransferFunction *function)
int GetColorChannels (int index)
int GetColorChannels ()
vtkPiecewiseFunctionGetGrayTransferFunction (int index)
vtkPiecewiseFunctionGetGrayTransferFunction ()
vtkColorTransferFunctionGetRGBTransferFunction (int index)
vtkColorTransferFunctionGetRGBTransferFunction ()
void SetScalarOpacity (int index, vtkPiecewiseFunction *function)
void SetScalarOpacity (vtkPiecewiseFunction *function)
vtkPiecewiseFunctionGetScalarOpacity (int index)
vtkPiecewiseFunctionGetScalarOpacity ()
void SetScalarOpacityUnitDistance (int index, double distance)
void SetScalarOpacityUnitDistance (double distance)
double GetScalarOpacityUnitDistance (int index)
double GetScalarOpacityUnitDistance ()
void SetGradientOpacity (int index, vtkPiecewiseFunction *function)
void SetGradientOpacity (vtkPiecewiseFunction *function)
vtkPiecewiseFunctionGetGradientOpacity (int index)
vtkPiecewiseFunctionGetGradientOpacity ()
virtual void SetDisableGradientOpacity (int index, int value)
virtual void SetDisableGradientOpacity (int value)
virtual void DisableGradientOpacityOn (int index)
virtual void DisableGradientOpacityOn ()
virtual void DisableGradientOpacityOff (int index)
virtual void DisableGradientOpacityOff ()
virtual int GetDisableGradientOpacity (int index)
virtual int GetDisableGradientOpacity ()
vtkPiecewiseFunctionGetStoredGradientOpacity (int index)
vtkPiecewiseFunctionGetStoredGradientOpacity ()
void SetShade (int index, int value)
void SetShade (int value)
int GetShade (int index)
int GetShade ()
void ShadeOn (int index)
void ShadeOn ()
void ShadeOff (int index)
void ShadeOff ()
void SetAmbient (int index, double value)
void SetAmbient (double value)
double GetAmbient (int index)
double GetAmbient ()
void SetDiffuse (int index, double value)
void SetDiffuse (double value)
double GetDiffuse (int index)
double GetDiffuse ()
void SetSpecular (int index, double value)
void SetSpecular (double value)
double GetSpecular (int index)
double GetSpecular ()
void SetSpecularPower (int index, double value)
void SetSpecularPower (double value)
double GetSpecularPower (int index)
double GetSpecularPower ()
vtkTimeStamp GetGradientOpacityMTime (int index)
vtkTimeStamp GetGradientOpacityMTime ()
vtkTimeStamp GetScalarOpacityMTime (int index)
vtkTimeStamp GetScalarOpacityMTime ()
vtkTimeStamp GetRGBTransferFunctionMTime (int index)
vtkTimeStamp GetRGBTransferFunctionMTime ()
vtkTimeStamp GetGrayTransferFunctionMTime (int index)
vtkTimeStamp GetGrayTransferFunctionMTime ()

Static Public Member Functions

static vtkVolumePropertyNew ()
static int IsTypeOf (const char *type)
static vtkVolumePropertySafeDownCast (vtkObjectBase *o)

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 vtkVolumeProperty ()
 ~vtkVolumeProperty ()
virtual void CreateDefaultGradientOpacity (int index)

Protected Attributes

int IndependentComponents
double ComponentWeight [VTK_MAX_VRCOMP]
int InterpolationType
int ColorChannels [VTK_MAX_VRCOMP]
vtkPiecewiseFunctionGrayTransferFunction [VTK_MAX_VRCOMP]
vtkTimeStamp GrayTransferFunctionMTime [VTK_MAX_VRCOMP]
vtkColorTransferFunctionRGBTransferFunction [VTK_MAX_VRCOMP]
vtkTimeStamp RGBTransferFunctionMTime [VTK_MAX_VRCOMP]
vtkPiecewiseFunctionScalarOpacity [VTK_MAX_VRCOMP]
vtkTimeStamp ScalarOpacityMTime [VTK_MAX_VRCOMP]
double ScalarOpacityUnitDistance [VTK_MAX_VRCOMP]
vtkPiecewiseFunctionGradientOpacity [VTK_MAX_VRCOMP]
vtkTimeStamp GradientOpacityMTime [VTK_MAX_VRCOMP]
vtkPiecewiseFunctionDefaultGradientOpacity [VTK_MAX_VRCOMP]
int DisableGradientOpacity [VTK_MAX_VRCOMP]
int Shade [VTK_MAX_VRCOMP]
double Ambient [VTK_MAX_VRCOMP]
double Diffuse [VTK_MAX_VRCOMP]
double Specular [VTK_MAX_VRCOMP]
double SpecularPower [VTK_MAX_VRCOMP]

Detailed Description

represents the common properties for rendering a volume.

vtkVolumeProperty is used to represent common properties associated with volume rendering. This includes properties for determining the type of interpolation to use when sampling a volume, the color of a volume, the scalar opacity of a volume, the gradient opacity of a volume, and the shading parameters of a volume.

When the scalar opacity or the gradient opacity of a volume is not set, then the function is defined to be a constant value of 1.0. When a scalar and gradient opacity are both set simultaneously, then the opacity is defined to be the product of the scalar opacity and gradient opacity transfer functions.

Most properties can be set per "component" for volume mappers that support multiple independent components. If you are using 2 component data as LV or 4 component data as RGBV (as specified in the mapper) only the first scalar opacity and gradient opacity transfer functions will be used (and all color functions will be ignored). Omitting the index parameter on the Set/Get methods will access index = 0.

See also:
vtkPiecewiseFunction vtkColorTransferFunction
Examples:
vtkVolumeProperty (Examples)
Tests:
vtkVolumeProperty (Tests)

Definition at line 59 of file vtkVolumeProperty.h.


Member Typedef Documentation

Reimplemented from vtkObject.

Definition at line 63 of file vtkVolumeProperty.h.


Constructor & Destructor Documentation


Member Function Documentation

Create an object with Debug turned off, modified time initialized to zero, and reference counting on.

Reimplemented from vtkObject.

static int vtkVolumeProperty::IsTypeOf ( const char *  name) [static]

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.

virtual int vtkVolumeProperty::IsA ( const char *  name) [virtual]

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 from vtkObject.

virtual vtkObjectBase* vtkVolumeProperty::NewInstanceInternal ( ) const [protected, virtual]

Reimplemented from vtkObject.

Reimplemented from vtkObject.

void vtkVolumeProperty::PrintSelf ( ostream &  os,
vtkIndent  indent 
) [virtual]

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 vtkObject.

unsigned long vtkVolumeProperty::GetMTime ( ) [virtual]

Get the modified time for this object (or the properties registered with this object).

Reimplemented from vtkObject.

virtual void vtkVolumeProperty::SetIndependentComponents ( int  ) [virtual]

Does the data have independent components, or do some define color only? If IndependentComponents is On (the default) then each component will be independently passed through a lookup table to determine RGBA, shaded. Some volume Mappers can handle 1 to 4 component unsigned char or unsigned short data (see each mapper header file to determine functionality). If IndependentComponents is Off, then you must have either 2 or 4 component data. For 2 component data, the first is passed through the first color transfer function and the second component is passed through the first opacity transfer function. Normals will be generated off of the second component. For 4 component data, the first three will directly represent RGB (no lookup table). The fourth component will be passed through the first scalar opacity transfer function for opacity. Normals will be generated from the fourth component.

Does the data have independent components, or do some define color only? If IndependentComponents is On (the default) then each component will be independently passed through a lookup table to determine RGBA, shaded. Some volume Mappers can handle 1 to 4 component unsigned char or unsigned short data (see each mapper header file to determine functionality). If IndependentComponents is Off, then you must have either 2 or 4 component data. For 2 component data, the first is passed through the first color transfer function and the second component is passed through the first opacity transfer function. Normals will be generated off of the second component. For 4 component data, the first three will directly represent RGB (no lookup table). The fourth component will be passed through the first scalar opacity transfer function for opacity. Normals will be generated from the fourth component.

virtual void vtkVolumeProperty::IndependentComponentsOn ( ) [virtual]

Does the data have independent components, or do some define color only? If IndependentComponents is On (the default) then each component will be independently passed through a lookup table to determine RGBA, shaded. Some volume Mappers can handle 1 to 4 component unsigned char or unsigned short data (see each mapper header file to determine functionality). If IndependentComponents is Off, then you must have either 2 or 4 component data. For 2 component data, the first is passed through the first color transfer function and the second component is passed through the first opacity transfer function. Normals will be generated off of the second component. For 4 component data, the first three will directly represent RGB (no lookup table). The fourth component will be passed through the first scalar opacity transfer function for opacity. Normals will be generated from the fourth component.

virtual void vtkVolumeProperty::IndependentComponentsOff ( ) [virtual]

Does the data have independent components, or do some define color only? If IndependentComponents is On (the default) then each component will be independently passed through a lookup table to determine RGBA, shaded. Some volume Mappers can handle 1 to 4 component unsigned char or unsigned short data (see each mapper header file to determine functionality). If IndependentComponents is Off, then you must have either 2 or 4 component data. For 2 component data, the first is passed through the first color transfer function and the second component is passed through the first opacity transfer function. Normals will be generated off of the second component. For 4 component data, the first three will directly represent RGB (no lookup table). The fourth component will be passed through the first scalar opacity transfer function for opacity. Normals will be generated from the fourth component.

virtual void vtkVolumeProperty::SetInterpolationType ( int  ) [virtual]

Set the interpolation type for sampling a volume. Initial value is VTK_NEAREST_INTERPOLATION.

Set the interpolation type for sampling a volume. Initial value is VTK_NEAREST_INTERPOLATION.

Set the interpolation type for sampling a volume. Initial value is VTK_NEAREST_INTERPOLATION.

Definition at line 97 of file vtkVolumeProperty.h.

Set the interpolation type for sampling a volume. Initial value is VTK_NEAREST_INTERPOLATION.

Definition at line 99 of file vtkVolumeProperty.h.

const char * vtkVolumeProperty::GetInterpolationTypeAsString ( void  ) [inline]

Return the interpolation type as a descriptive character string.

Definition at line 372 of file vtkVolumeProperty.h.

virtual void vtkVolumeProperty::SetComponentWeight ( int  index,
double  value 
) [virtual]

Set/Get the scalar component weights

virtual double vtkVolumeProperty::GetComponentWeight ( int  index) [virtual]

Set/Get the scalar component weights

void vtkVolumeProperty::SetColor ( int  index,
vtkPiecewiseFunction function 
)

Set the color of a volume to a gray level transfer function for the component indicated by index. This will set the color channels for this component to 1.

void vtkVolumeProperty::SetColor ( vtkPiecewiseFunction function) [inline]

Set the color of a volume to a gray level transfer function for the component indicated by index. This will set the color channels for this component to 1.

Definition at line 115 of file vtkVolumeProperty.h.

void vtkVolumeProperty::SetColor ( int  index,
vtkColorTransferFunction function 
)

Set the color of a volume to an RGB transfer function for the component indicated by index. This will set the color channels for this component to 3. This will also recompute the color channels

Set the color of a volume to an RGB transfer function for the component indicated by index. This will set the color channels for this component to 3. This will also recompute the color channels

Definition at line 124 of file vtkVolumeProperty.h.

Get the number of color channels in the transfer function for the given component.

Get the number of color channels in the transfer function for the given component.

Definition at line 132 of file vtkVolumeProperty.h.

Get the gray transfer function. If no transfer function has been set for this component, a default one is created and returned.

Get the gray transfer function. If no transfer function has been set for this component, a default one is created and returned.

Definition at line 140 of file vtkVolumeProperty.h.

Get the RGB transfer function for the given component. If no transfer function has been set for this component, a default one is created and returned.

Get the RGB transfer function for the given component. If no transfer function has been set for this component, a default one is created and returned.

Definition at line 149 of file vtkVolumeProperty.h.

Set the opacity of a volume to an opacity transfer function based on scalar value for the component indicated by index.

Set the opacity of a volume to an opacity transfer function based on scalar value for the component indicated by index.

Definition at line 157 of file vtkVolumeProperty.h.

Get the scalar opacity transfer function for the given component. If no transfer function has been set for this component, a default one is created and returned.

Get the scalar opacity transfer function for the given component. If no transfer function has been set for this component, a default one is created and returned.

Definition at line 166 of file vtkVolumeProperty.h.

Set/Get the unit distance on which the scalar opacity transfer function is defined. By default this is 1.0, meaning that over a distance of 1.0 units, a given opacity (from the transfer function) is accumulated. This is adjusted for the actual sampling distance during rendering.

Set/Get the unit distance on which the scalar opacity transfer function is defined. By default this is 1.0, meaning that over a distance of 1.0 units, a given opacity (from the transfer function) is accumulated. This is adjusted for the actual sampling distance during rendering.

Definition at line 177 of file vtkVolumeProperty.h.

Set/Get the unit distance on which the scalar opacity transfer function is defined. By default this is 1.0, meaning that over a distance of 1.0 units, a given opacity (from the transfer function) is accumulated. This is adjusted for the actual sampling distance during rendering.

Set/Get the unit distance on which the scalar opacity transfer function is defined. By default this is 1.0, meaning that over a distance of 1.0 units, a given opacity (from the transfer function) is accumulated. This is adjusted for the actual sampling distance during rendering.

Definition at line 180 of file vtkVolumeProperty.h.

Set the opacity of a volume to an opacity transfer function based on gradient magnitude for the given component.

Set the opacity of a volume to an opacity transfer function based on gradient magnitude for the given component.

Definition at line 189 of file vtkVolumeProperty.h.

Get the gradient magnitude opacity transfer function for the given component. If no transfer function has been set for this component, a default one is created and returned. This default function is always returned if DisableGradientOpacity is On for that component.

Get the gradient magnitude opacity transfer function for the given component. If no transfer function has been set for this component, a default one is created and returned. This default function is always returned if DisableGradientOpacity is On for that component.

Definition at line 199 of file vtkVolumeProperty.h.

virtual void vtkVolumeProperty::SetDisableGradientOpacity ( int  index,
int  value 
) [virtual]

Enable/Disable the gradient opacity function for the given component. If set to true, any call to GetGradientOpacity() will return a default function for this component. Note that the gradient opacity function is still stored, it is not set or reset and can be retrieved using GetStoredGradientOpacity().

virtual void vtkVolumeProperty::SetDisableGradientOpacity ( int  value) [inline, virtual]

Enable/Disable the gradient opacity function for the given component. If set to true, any call to GetGradientOpacity() will return a default function for this component. Note that the gradient opacity function is still stored, it is not set or reset and can be retrieved using GetStoredGradientOpacity().

Definition at line 210 of file vtkVolumeProperty.h.

virtual void vtkVolumeProperty::DisableGradientOpacityOn ( int  index) [inline, virtual]

Enable/Disable the gradient opacity function for the given component. If set to true, any call to GetGradientOpacity() will return a default function for this component. Note that the gradient opacity function is still stored, it is not set or reset and can be retrieved using GetStoredGradientOpacity().

Definition at line 212 of file vtkVolumeProperty.h.

virtual void vtkVolumeProperty::DisableGradientOpacityOn ( ) [inline, virtual]

Enable/Disable the gradient opacity function for the given component. If set to true, any call to GetGradientOpacity() will return a default function for this component. Note that the gradient opacity function is still stored, it is not set or reset and can be retrieved using GetStoredGradientOpacity().

Definition at line 214 of file vtkVolumeProperty.h.

virtual void vtkVolumeProperty::DisableGradientOpacityOff ( int  index) [inline, virtual]

Enable/Disable the gradient opacity function for the given component. If set to true, any call to GetGradientOpacity() will return a default function for this component. Note that the gradient opacity function is still stored, it is not set or reset and can be retrieved using GetStoredGradientOpacity().

Definition at line 216 of file vtkVolumeProperty.h.

virtual void vtkVolumeProperty::DisableGradientOpacityOff ( ) [inline, virtual]

Enable/Disable the gradient opacity function for the given component. If set to true, any call to GetGradientOpacity() will return a default function for this component. Note that the gradient opacity function is still stored, it is not set or reset and can be retrieved using GetStoredGradientOpacity().

Definition at line 218 of file vtkVolumeProperty.h.

Enable/Disable the gradient opacity function for the given component. If set to true, any call to GetGradientOpacity() will return a default function for this component. Note that the gradient opacity function is still stored, it is not set or reset and can be retrieved using GetStoredGradientOpacity().

virtual int vtkVolumeProperty::GetDisableGradientOpacity ( ) [inline, virtual]

Enable/Disable the gradient opacity function for the given component. If set to true, any call to GetGradientOpacity() will return a default function for this component. Note that the gradient opacity function is still stored, it is not set or reset and can be retrieved using GetStoredGradientOpacity().

Definition at line 221 of file vtkVolumeProperty.h.

Enable/Disable the gradient opacity function for the given component. If set to true, any call to GetGradientOpacity() will return a default function for this component. Note that the gradient opacity function is still stored, it is not set or reset and can be retrieved using GetStoredGradientOpacity().

Enable/Disable the gradient opacity function for the given component. If set to true, any call to GetGradientOpacity() will return a default function for this component. Note that the gradient opacity function is still stored, it is not set or reset and can be retrieved using GetStoredGradientOpacity().

Definition at line 224 of file vtkVolumeProperty.h.

void vtkVolumeProperty::SetShade ( int  index,
int  value 
)

Set/Get the shading of a volume. If shading is turned off, then the mapper for the volume will not perform shading calculations. If shading is turned on, the mapper may perform shading calculations - in some cases shading does not apply (for example, in a maximum intensity projection) and therefore shading will not be performed even if this flag is on. For a compositing type of mapper, turning shading off is generally the same as setting ambient=1, diffuse=0, specular=0. Shading can be independently turned on/off per component.

void vtkVolumeProperty::SetShade ( int  value) [inline]

Set/Get the shading of a volume. If shading is turned off, then the mapper for the volume will not perform shading calculations. If shading is turned on, the mapper may perform shading calculations - in some cases shading does not apply (for example, in a maximum intensity projection) and therefore shading will not be performed even if this flag is on. For a compositing type of mapper, turning shading off is generally the same as setting ambient=1, diffuse=0, specular=0. Shading can be independently turned on/off per component.

Definition at line 238 of file vtkVolumeProperty.h.

Set/Get the shading of a volume. If shading is turned off, then the mapper for the volume will not perform shading calculations. If shading is turned on, the mapper may perform shading calculations - in some cases shading does not apply (for example, in a maximum intensity projection) and therefore shading will not be performed even if this flag is on. For a compositing type of mapper, turning shading off is generally the same as setting ambient=1, diffuse=0, specular=0. Shading can be independently turned on/off per component.

Set/Get the shading of a volume. If shading is turned off, then the mapper for the volume will not perform shading calculations. If shading is turned on, the mapper may perform shading calculations - in some cases shading does not apply (for example, in a maximum intensity projection) and therefore shading will not be performed even if this flag is on. For a compositing type of mapper, turning shading off is generally the same as setting ambient=1, diffuse=0, specular=0. Shading can be independently turned on/off per component.

Definition at line 241 of file vtkVolumeProperty.h.

Set/Get the shading of a volume. If shading is turned off, then the mapper for the volume will not perform shading calculations. If shading is turned on, the mapper may perform shading calculations - in some cases shading does not apply (for example, in a maximum intensity projection) and therefore shading will not be performed even if this flag is on. For a compositing type of mapper, turning shading off is generally the same as setting ambient=1, diffuse=0, specular=0. Shading can be independently turned on/off per component.

void vtkVolumeProperty::ShadeOn ( ) [inline]

Set/Get the shading of a volume. If shading is turned off, then the mapper for the volume will not perform shading calculations. If shading is turned on, the mapper may perform shading calculations - in some cases shading does not apply (for example, in a maximum intensity projection) and therefore shading will not be performed even if this flag is on. For a compositing type of mapper, turning shading off is generally the same as setting ambient=1, diffuse=0, specular=0. Shading can be independently turned on/off per component.

Definition at line 244 of file vtkVolumeProperty.h.

Set/Get the shading of a volume. If shading is turned off, then the mapper for the volume will not perform shading calculations. If shading is turned on, the mapper may perform shading calculations - in some cases shading does not apply (for example, in a maximum intensity projection) and therefore shading will not be performed even if this flag is on. For a compositing type of mapper, turning shading off is generally the same as setting ambient=1, diffuse=0, specular=0. Shading can be independently turned on/off per component.

void vtkVolumeProperty::ShadeOff ( ) [inline]

Set/Get the shading of a volume. If shading is turned off, then the mapper for the volume will not perform shading calculations. If shading is turned on, the mapper may perform shading calculations - in some cases shading does not apply (for example, in a maximum intensity projection) and therefore shading will not be performed even if this flag is on. For a compositing type of mapper, turning shading off is generally the same as setting ambient=1, diffuse=0, specular=0. Shading can be independently turned on/off per component.

Definition at line 247 of file vtkVolumeProperty.h.

void vtkVolumeProperty::SetAmbient ( int  index,
double  value 
)

Set/Get the ambient lighting coefficient.

void vtkVolumeProperty::SetAmbient ( double  value) [inline]

Set/Get the ambient lighting coefficient.

Definition at line 254 of file vtkVolumeProperty.h.

Set/Get the ambient lighting coefficient.

Set/Get the ambient lighting coefficient.

Definition at line 257 of file vtkVolumeProperty.h.

void vtkVolumeProperty::SetDiffuse ( int  index,
double  value 
)

Set/Get the diffuse lighting coefficient.

void vtkVolumeProperty::SetDiffuse ( double  value) [inline]

Set/Get the diffuse lighting coefficient.

Definition at line 264 of file vtkVolumeProperty.h.

Set/Get the diffuse lighting coefficient.

Set/Get the diffuse lighting coefficient.

Definition at line 267 of file vtkVolumeProperty.h.

void vtkVolumeProperty::SetSpecular ( int  index,
double  value 
)

Set/Get the specular lighting coefficient.

void vtkVolumeProperty::SetSpecular ( double  value) [inline]

Set/Get the specular lighting coefficient.

Definition at line 274 of file vtkVolumeProperty.h.

Set/Get the specular lighting coefficient.

Set/Get the specular lighting coefficient.

Definition at line 277 of file vtkVolumeProperty.h.

void vtkVolumeProperty::SetSpecularPower ( int  index,
double  value 
)

Set/Get the specular power.

void vtkVolumeProperty::SetSpecularPower ( double  value) [inline]

Set/Get the specular power.

Definition at line 284 of file vtkVolumeProperty.h.

Set/Get the specular power.

Set/Get the specular power.

Definition at line 287 of file vtkVolumeProperty.h.

WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE UpdateMTimes performs a Modified() on all TimeStamps. This is used by vtkVolume when the property is set, so that any other object that might have been caching information for the property will rebuild.

WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Get the time that the gradient opacity transfer function was set

WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Get the time that the gradient opacity transfer function was set

Definition at line 302 of file vtkVolumeProperty.h.

WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Get the time that the scalar opacity transfer function was set.

WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Get the time that the scalar opacity transfer function was set.

Definition at line 310 of file vtkVolumeProperty.h.

WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Get the time that the RGBTransferFunction was set

WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Get the time that the RGBTransferFunction was set

Definition at line 318 of file vtkVolumeProperty.h.

WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Get the time that the GrayTransferFunction was set

WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Get the time that the GrayTransferFunction was set

Definition at line 326 of file vtkVolumeProperty.h.

virtual void vtkVolumeProperty::CreateDefaultGradientOpacity ( int  index) [protected, virtual]

Member Data Documentation

Definition at line 335 of file vtkVolumeProperty.h.

Definition at line 336 of file vtkVolumeProperty.h.

Definition at line 338 of file vtkVolumeProperty.h.

Definition at line 340 of file vtkVolumeProperty.h.

Definition at line 342 of file vtkVolumeProperty.h.

Definition at line 343 of file vtkVolumeProperty.h.

Definition at line 345 of file vtkVolumeProperty.h.

Definition at line 346 of file vtkVolumeProperty.h.

Definition at line 348 of file vtkVolumeProperty.h.

Definition at line 349 of file vtkVolumeProperty.h.

Definition at line 350 of file vtkVolumeProperty.h.

Definition at line 352 of file vtkVolumeProperty.h.

Definition at line 353 of file vtkVolumeProperty.h.

Definition at line 354 of file vtkVolumeProperty.h.

Definition at line 355 of file vtkVolumeProperty.h.

Definition at line 357 of file vtkVolumeProperty.h.

Definition at line 358 of file vtkVolumeProperty.h.

Definition at line 359 of file vtkVolumeProperty.h.

Definition at line 360 of file vtkVolumeProperty.h.

Definition at line 361 of file vtkVolumeProperty.h.


The documentation for this class was generated from the following file: