VTK
vtkMarkerUtilities.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMarkerUtilities.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 =========================================================================*/
15 
27 #ifndef vtkMarkerUtilities_h
28 #define vtkMarkerUtilities_h
29 
30 #include "vtkRenderingContext2DModule.h" // For export macro
31 
32 #include "vtkObject.h"
33 
34 class vtkImageData;
35 
37 {
38 public:
39  vtkTypeMacro(vtkMarkerUtilities, vtkObject);
40  virtual void PrintSelf(ostream &os, vtkIndent indent);
41 
42 //BTX
44 
45  enum {
46  NONE = 0,
51  DIAMOND
52  };
53 //ETX
55 
57  static void GenerateMarker(vtkImageData *data, int style, int width);
58 
59 //BTX
60 protected:
63 
64 private:
65  vtkMarkerUtilities(const vtkMarkerUtilities &); // Not implemented.
66  void operator=(const vtkMarkerUtilities &); // Not implemented.
67 //ETX
68 };
69 
70 #endif //vtkMarkerUtilities_h
abstract base class for most VTK objects
Definition: vtkObject.h:61
virtual void PrintSelf(ostream &os, vtkIndent indent)
#define VTKRENDERINGCONTEXT2D_EXPORT
a simple class to control print indentation
Definition: vtkIndent.h:38
topologically and geometrically regular array of data
Definition: vtkImageData.h:44
Utilities for generating marker images.