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