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