VTK
vtkGlyph2D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGlyph2D.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
32 #ifndef __vtkGlyph2D_h
33 #define __vtkGlyph2D_h
34 
35 #include "vtkGlyph3D.h"
36 
38 {
39 public:
40  vtkTypeMacro(vtkGlyph2D,vtkGlyph3D);
41  void PrintSelf(ostream& os, vtkIndent indent);
42 
47  static vtkGlyph2D *New();
48 
49 protected:
50  vtkGlyph2D() {};
52 
54 
55 private:
56  vtkGlyph2D(const vtkGlyph2D&); // Not implemented.
57  void operator=(const vtkGlyph2D&); // Not implemented.
58 };
59 
60 #endif