NAME
vtkAxes - create an x-y-z axes
SYNOPSIS
#include "/opt/vtk-c++/graphics/vtkAxes.h"
class VTK_EXPORT vtkAxes : public vtkPolyDataSource
vtkAxes();
static vtkAxes *New() {return new vtkAxes;};
const char *GetClassName() {return "vtkAxes";};
void PrintSelf(ostream& os, vtkIndent indent);
void SetOrigin(float, float, float);
void SetOrigin(float *);
float *GetOrigin();
void GetOrigin(float data[3]);
void SetScaleFactor(float);
float GetScaleFactor();
DESCRIPTION
vtkAxes creates three lines that form an x-y-z axes. The origin of the axes is user specified (0,0,0 is default), and the size is specified with a scale factor. Three scalar values are generated for the three lines and can be used (via color map) to indicate a particular coordinate axis.
SUMMARY
void SetOrigin(float, float, float)
void SetOrigin(float *)
Set the origin of the axes.
void SetScaleFactor(float)
Set the scale factor of the axes. Used to control size.
vtkAxes()
Construct with origin=(0,0,0) and scale factor=1.