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);
40 
41  virtual void RenderOverlay(vtkViewport*, vtkActor2D*) {}
44  virtual int HasTranslucentPolygonalGeometry() { return 0; }
45 
46 protected:
49 
50 private:
51  vtkMapper2D(const vtkMapper2D&) VTK_DELETE_FUNCTION;
52  void operator=(const vtkMapper2D&) VTK_DELETE_FUNCTION;
53 };
54 
55 #endif
virtual void RenderOverlay(vtkViewport *, vtkActor2D *)
Definition: vtkMapper2D.h:41
abstract specification for Viewports
Definition: vtkViewport.h:47
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
a actor that draws 2D data
Definition: vtkActor2D.h:45
virtual void RenderTranslucentPolygonalGeometry(vtkViewport *, vtkActor2D *)
Definition: vtkMapper2D.h:43
a simple class to control print indentation
Definition: vtkIndent.h:39
abstract class specifies interface to map data
virtual int HasTranslucentPolygonalGeometry()
Definition: vtkMapper2D.h:44
virtual void RenderOpaqueGeometry(vtkViewport *, vtkActor2D *)
Definition: vtkMapper2D.h:42
abstract class specifies interface for objects which render 2D actors
Definition: vtkMapper2D.h:35