VTK
|
create hierarchies of props More...
#include <vtkPropAssembly.h>
create hierarchies of props
vtkPropAssembly is an object that groups props and other prop assemblies into a tree-like hierarchy. The props can then be treated as a group (e.g., turning visibility on and off).
A vtkPropAssembly object can be used in place of an vtkProp since it is a subclass of vtkProp. The difference is that vtkPropAssembly maintains a list of other prop and prop assembly instances (its "parts") that form the assembly. Note that this process is recursive: you can create groups consisting of prop assemblies to arbitrary depth.
vtkPropAssembly's and vtkProp's that compose a prop assembly need not be added to a renderer's list of props, as long as the parent assembly is in the prop list. This is because they are automatically renderered during the hierarchical traversal process.
Definition at line 55 of file vtkPropAssembly.h.
typedef vtkProp vtkPropAssembly::Superclass |
Reimplemented from vtkProp.
Definition at line 58 of file vtkPropAssembly.h.
vtkPropAssembly::vtkPropAssembly | ( | ) | [protected] |
vtkPropAssembly::~vtkPropAssembly | ( | ) | [protected] |
static int vtkPropAssembly::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 vtkProp.
virtual int vtkPropAssembly::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 vtkProp.
static vtkPropAssembly* vtkPropAssembly::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkProp.
virtual vtkObjectBase* vtkPropAssembly::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkProp.
vtkPropAssembly* vtkPropAssembly::NewInstance | ( | ) | const |
Reimplemented from vtkProp.
void vtkPropAssembly::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
static vtkPropAssembly* vtkPropAssembly::New | ( | ) | [static] |
Create with an empty parts list.
Reimplemented from vtkObject.
void vtkPropAssembly::AddPart | ( | vtkProp * | ) |
Add a part to the list of parts.
void vtkPropAssembly::RemovePart | ( | vtkProp * | ) |
Remove a part from the list of parts,
Return the list of parts.
int vtkPropAssembly::RenderOpaqueGeometry | ( | vtkViewport * | ren | ) | [virtual] |
Render this assembly and all its parts. The rendering process is recursive. The parts of each assembly are rendered only if the visibility for the prop is turned on.
Reimplemented from vtkProp.
virtual int vtkPropAssembly::RenderTranslucentPolygonalGeometry | ( | vtkViewport * | ren | ) | [virtual] |
Render this assembly and all its parts. The rendering process is recursive. The parts of each assembly are rendered only if the visibility for the prop is turned on.
Reimplemented from vtkProp.
virtual int vtkPropAssembly::RenderVolumetricGeometry | ( | vtkViewport * | ren | ) | [virtual] |
Render this assembly and all its parts. The rendering process is recursive. The parts of each assembly are rendered only if the visibility for the prop is turned on.
Reimplemented from vtkProp.
int vtkPropAssembly::RenderOverlay | ( | vtkViewport * | ren | ) | [virtual] |
Render this assembly and all its parts. The rendering process is recursive. The parts of each assembly are rendered only if the visibility for the prop is turned on.
Reimplemented from vtkProp.
virtual int vtkPropAssembly::HasTranslucentPolygonalGeometry | ( | ) | [virtual] |
Does this prop have some translucent polygonal geometry?
Reimplemented from vtkProp.
void vtkPropAssembly::ReleaseGraphicsResources | ( | vtkWindow * | ) | [virtual] |
Release any graphics resources that are being consumed by this actor. The parameter window could be used to determine which graphic resources to release.
Reimplemented from vtkProp.
double* vtkPropAssembly::GetBounds | ( | ) | [virtual] |
Get the bounds for this prop assembly as (Xmin,Xmax,Ymin,Ymax,Zmin,Zmax). May return NULL in some cases (meaning the bounds is undefined).
Reimplemented from vtkProp.
void vtkPropAssembly::ShallowCopy | ( | vtkProp * | Prop | ) | [virtual] |
Shallow copy of this vtkPropAssembly.
Reimplemented from vtkProp.
unsigned long int vtkPropAssembly::GetMTime | ( | ) | [virtual] |
Override default GetMTime method to also consider all of the prop assembly's parts.
Reimplemented from vtkObject.
void vtkPropAssembly::InitPathTraversal | ( | ) | [virtual] |
Methods to traverse the paths (i.e., leaf nodes) of a prop assembly. These methods should be contrasted to those that traverse the list of parts using GetParts(). GetParts() returns a list of children of this assembly, not necessarily the leaf nodes of the assembly. To use the methods below - first invoke InitPathTraversal() followed by repeated calls to GetNextPath(). GetNextPath() returns a NULL pointer when the list is exhausted. (See the superclass vtkProp for more information about paths.)
Reimplemented from vtkProp.
vtkAssemblyPath* vtkPropAssembly::GetNextPath | ( | ) | [virtual] |
Methods to traverse the paths (i.e., leaf nodes) of a prop assembly. These methods should be contrasted to those that traverse the list of parts using GetParts(). GetParts() returns a list of children of this assembly, not necessarily the leaf nodes of the assembly. To use the methods below - first invoke InitPathTraversal() followed by repeated calls to GetNextPath(). GetNextPath() returns a NULL pointer when the list is exhausted. (See the superclass vtkProp for more information about paths.)
Reimplemented from vtkProp.
int vtkPropAssembly::GetNumberOfPaths | ( | ) | [virtual] |
Methods to traverse the paths (i.e., leaf nodes) of a prop assembly. These methods should be contrasted to those that traverse the list of parts using GetParts(). GetParts() returns a list of children of this assembly, not necessarily the leaf nodes of the assembly. To use the methods below - first invoke InitPathTraversal() followed by repeated calls to GetNextPath(). GetNextPath() returns a NULL pointer when the list is exhausted. (See the superclass vtkProp for more information about paths.)
Reimplemented from vtkProp.
void vtkPropAssembly::BuildPaths | ( | vtkAssemblyPaths * | paths, |
vtkAssemblyPath * | path | ||
) | [virtual] |
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THIS METHOD OUTSIDE OF THE RENDERING PROCESS Overload the superclass' vtkProp BuildPaths() method.
Reimplemented from vtkProp.
void vtkPropAssembly::UpdatePaths | ( | ) | [protected] |
vtkPropCollection* vtkPropAssembly::Parts [protected] |
Definition at line 130 of file vtkPropAssembly.h.
double vtkPropAssembly::Bounds[6] [protected] |
Definition at line 131 of file vtkPropAssembly.h.
vtkTimeStamp vtkPropAssembly::PathTime [protected] |
Definition at line 134 of file vtkPropAssembly.h.