#include <vtkCursor3D.h>
Inheritance diagram for vtkCursor3D:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | SetModelBounds (float xmin, float xmax, float ymin, float ymax, float zmin, float zmax) |
void | SetModelBounds (float *bounds) |
virtual float * | GetModelBounds () |
virtual void | GetModelBounds (float data[6]) |
virtual void | SetFocalPoint (float, float, float) |
virtual void | SetFocalPoint (float[3]) |
virtual float * | GetFocalPoint () |
virtual void | GetFocalPoint (float data[3]) |
virtual void | SetOutline (int) |
virtual int | GetOutline () |
virtual void | OutlineOn () |
virtual void | OutlineOff () |
virtual void | SetAxes (int) |
virtual int | GetAxes () |
virtual void | AxesOn () |
virtual void | AxesOff () |
virtual void | SetXShadows (int) |
virtual int | GetXShadows () |
virtual void | XShadowsOn () |
virtual void | XShadowsOff () |
virtual void | SetYShadows (int) |
virtual int | GetYShadows () |
virtual void | YShadowsOn () |
virtual void | YShadowsOff () |
virtual void | SetZShadows (int) |
virtual int | GetZShadows () |
virtual void | ZShadowsOn () |
virtual void | ZShadowsOff () |
virtual void | SetWrap (int) |
virtual int | GetWrap () |
virtual void | WrapOn () |
virtual void | WrapOff () |
vtkPolyData * | GetFocus () |
void | AllOn () |
void | AllOff () |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkCursor3D * | SafeDownCast (vtkObject *o) |
vtkCursor3D * | New () |
Protected Methods | |
vtkCursor3D () | |
~vtkCursor3D () | |
vtkCursor3D (const vtkCursor3D &) | |
void | operator= (const vtkCursor3D &) |
void | Execute () |
Protected Attributes | |
vtkPolyData * | Focus |
float | ModelBounds [6] |
float | FocalPoint [3] |
int | Outline |
int | Axes |
int | XShadows |
int | YShadows |
int | ZShadows |
int | Wrap |
vtkCursor3D is an object that generates a 3D representation of a cursor. The cursor consists of a wireframe bounding box, three intersecting axes lines that meet at the cursor focus, and "shadows" or projections of the axes against the sides of the bounding box. Each of these components can be turned on/off.
This filter generates two output datasets. The first (Output) is just the geometric representation of the cursor. The second (Focus) is a single point at the focal point.
|
Turn every part of the 3D cursor on or off. |
|
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 vtkPolyDataSource. |
|
Get the focus for this filter. |
|
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 vtkPolyDataSource. |
|
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 vtkPolyDataSource. |
|
Construct with model bounds = (-1,1,-1,1,-1,1), focal point = (0,0,0), all parts of cursor visible, and wrapping off. Reimplemented from vtkPolyDataSource. |
|
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 vtkSource. |
|
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 vtkPolyDataSource. |
|
Turn on/off the wireframe axes. |
|
Specify the position of cursor focus. |
|
Set / get the boundary of the 3D cursor. |
|
Turn on/off the wireframe bounding box. |
|
Turn on/off cursor wrapping. If the cursor focus moves outside the specified bounds, the cursor will either be restrained against the nearest "wall" (Wrap=off), or it will wrap around (Wrap=on). |
|
Turn on/off the wireframe x-shadows. |
|
Turn on/off the wireframe y-shadows. |
|
Turn on/off the wireframe z-shadows. |