vtkGlyph2D.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00043 #ifndef __vtkGlyph2D_h
00044 #define __vtkGlyph2D_h
00045
00046 #include "vtkGlyph3D.h"
00047
00048 class VTK_GRAPHICS_EXPORT vtkGlyph2D : public vtkGlyph3D
00049 {
00050 public:
00051 vtkTypeRevisionMacro(vtkGlyph2D,vtkGlyph3D);
00052 void PrintSelf(ostream& os, vtkIndent indent);
00053
00058 static vtkGlyph2D *New();
00059
00060 protected:
00061 vtkGlyph2D() {};
00062 ~vtkGlyph2D() {};
00063
00064 void Execute();
00065 private:
00066 vtkGlyph2D(const vtkGlyph2D&);
00067 void operator=(const vtkGlyph2D&);
00068 };
00069
00070 #endif