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 =========================================================================*/
25 #ifndef vtkMapper2D_h
26 #define vtkMapper2D_h
27 
28 #include "vtkRenderingCoreModule.h" // For export macro
29 #include "vtkAbstractMapper.h"
30 
31 class vtkViewport;
32 class vtkActor2D;
33 
35 {
36 public:
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
40  virtual void RenderOverlay(vtkViewport*, vtkActor2D*) {}
43  virtual int HasTranslucentPolygonalGeometry() { return 0; }
44 
45 protected:
48 
49 private:
50  vtkMapper2D(const vtkMapper2D&); // Not implemented.
51  void operator=(const vtkMapper2D&); // Not implemented.
52 };
53 
54 #endif
virtual void RenderOverlay(vtkViewport *, vtkActor2D *)
Definition: vtkMapper2D.h:40
abstract specification for Viewports
Definition: vtkViewport.h:46
void PrintSelf(ostream &os, vtkIndent indent)
a actor that draws 2D data
Definition: vtkActor2D.h:44
virtual void RenderTranslucentPolygonalGeometry(vtkViewport *, vtkActor2D *)
Definition: vtkMapper2D.h:42
a simple class to control print indentation
Definition: vtkIndent.h:38
abstract class specifies interface to map data
virtual int HasTranslucentPolygonalGeometry()
Definition: vtkMapper2D.h:43
#define VTKRENDERINGCORE_EXPORT
virtual void RenderOpaqueGeometry(vtkViewport *, vtkActor2D *)
Definition: vtkMapper2D.h:41
abstract class specifies interface for objects which render 2D actors
Definition: vtkMapper2D.h:34