VTK  9.1.0
vtkMapper2D.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkMapper2D.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=========================================================================*/
26#ifndef vtkMapper2D_h
27#define vtkMapper2D_h
28
29#include "vtkAbstractMapper.h"
30#include "vtkRenderingCoreModule.h" // For export macro
31
32class vtkViewport;
33class vtkActor2D;
34
35class VTKRENDERINGCORE_EXPORT vtkMapper2D : public vtkAbstractMapper
36{
37public:
39 void PrintSelf(ostream& os, vtkIndent indent) override;
40
45
46protected:
47 vtkMapper2D() = default;
48 ~vtkMapper2D() override = default;
49
50private:
51 vtkMapper2D(const vtkMapper2D&) = delete;
52 void operator=(const vtkMapper2D&) = delete;
53};
54
55#endif
abstract class specifies interface to map data
a actor that draws 2D data
Definition: vtkActor2D.h:149
a simple class to control print indentation
Definition: vtkIndent.h:113
abstract class specifies interface for objects which render 2D actors
Definition: vtkMapper2D.h:36
virtual void RenderOpaqueGeometry(vtkViewport *, vtkActor2D *)
Definition: vtkMapper2D.h:42
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkMapper2D()=default
virtual void RenderOverlay(vtkViewport *, vtkActor2D *)
Definition: vtkMapper2D.h:41
virtual void RenderTranslucentPolygonalGeometry(vtkViewport *, vtkActor2D *)
Definition: vtkMapper2D.h:43
virtual vtkTypeBool HasTranslucentPolygonalGeometry()
Definition: vtkMapper2D.h:44
~vtkMapper2D() override=default
abstract specification for Viewports
Definition: vtkViewport.h:47
int vtkTypeBool
Definition: vtkABI.h:69