dox/Graphics/vtkGlyph2D.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00036
#ifndef __vtkGlyph2D_h
00037
#define __vtkGlyph2D_h
00038
00039
#include "vtkGlyph3D.h"
00040
00041 class VTK_GRAPHICS_EXPORT vtkGlyph2D :
public vtkGlyph3D
00042 {
00043
public:
00044 vtkTypeRevisionMacro(vtkGlyph2D,
vtkGlyph3D);
00045
void PrintSelf(ostream& os,
vtkIndent indent);
00046
00051
static vtkGlyph2D *
New();
00052
00053
protected:
00054 vtkGlyph2D() {};
00055 ~vtkGlyph2D() {};
00056
00057
void Execute();
00058
private:
00059 vtkGlyph2D(
const vtkGlyph2D&);
00060
void operator=(
const vtkGlyph2D&);
00061 };
00062
00063
#endif