VTK  9.1.0
vtkOpenGLTextMapper.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkOpenGLTextMapper.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
21#ifndef vtkOpenGLTextMapper_h
22#define vtkOpenGLTextMapper_h
23
24#include "vtkRenderingOpenGL2Module.h" // For export macro
25#include "vtkTextMapper.h"
26
28
29class VTKRENDERINGOPENGL2_EXPORT vtkOpenGLTextMapper : public vtkTextMapper
30{
31public:
34 void PrintSelf(ostream& os, vtkIndent indent) override;
35
36 void RenderOverlay(vtkViewport* vp, vtkActor2D* act) override;
37
38protected:
41
43
44private:
46 void operator=(const vtkOpenGLTextMapper&) = delete;
47};
48
49#endif // vtkOpenGLTextMapper_h
a actor that draws 2D data
Definition: vtkActor2D.h:149
a simple class to control print indentation
Definition: vtkIndent.h:113
Access GL2PS functionality.
vtkTextMapper override for OpenGL2.
static vtkOpenGLTextMapper * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void RenderGL2PS(vtkViewport *vp, vtkActor2D *act, vtkOpenGLGL2PSHelper *gl2ps)
~vtkOpenGLTextMapper() override
void RenderOverlay(vtkViewport *vp, vtkActor2D *act) override
2D text annotation
abstract specification for Viewports
Definition: vtkViewport.h:47