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
00032
#ifndef __vtkGlyph2D_h
00033
#define __vtkGlyph2D_h
00034
00035
#include "vtkGlyph3D.h"
00036
00037 class VTK_GRAPHICS_EXPORT vtkGlyph2D :
public vtkGlyph3D
00038 {
00039
public:
00040 vtkTypeRevisionMacro(vtkGlyph2D,
vtkGlyph3D);
00041
void PrintSelf(ostream& os,
vtkIndent indent);
00042
00047
static vtkGlyph2D *
New();
00048
00049
protected:
00050 vtkGlyph2D() {};
00051 ~vtkGlyph2D() {};
00052
00053
void Execute();
00054
private:
00055 vtkGlyph2D(
const vtkGlyph2D&);
00056
void operator=(
const vtkGlyph2D&);
00057 };
00058
00059
#endif