Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

dox/Common/vtkMapper2D.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkMapper2D.h,v $ 00005 Language: C++ 00006 00007 Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 00008 All rights reserved. 00009 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00010 00011 This software is distributed WITHOUT ANY WARRANTY; without even 00012 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00013 PURPOSE. See the above copyright notice for more information. 00014 00015 =========================================================================*/ 00028 #ifndef __vtkMapper2D_h 00029 #define __vtkMapper2D_h 00030 00031 #include "vtkAbstractMapper.h" 00032 00033 class vtkViewport; 00034 class vtkActor2D; 00035 00036 class VTK_COMMON_EXPORT vtkMapper2D : public vtkAbstractMapper 00037 { 00038 public: 00039 vtkTypeRevisionMacro(vtkMapper2D,vtkAbstractMapper); 00040 void PrintSelf(ostream& os, vtkIndent indent); 00041 00042 virtual void RenderOverlay(vtkViewport*, vtkActor2D*) {}; 00043 virtual void RenderOpaqueGeometry(vtkViewport*, vtkActor2D*) {}; 00044 virtual void RenderTranslucentGeometry(vtkViewport*, vtkActor2D*) {}; 00045 00046 protected: 00047 vtkMapper2D() {}; 00048 ~vtkMapper2D() {}; 00049 00050 private: 00051 vtkMapper2D(const vtkMapper2D&); // Not implemented. 00052 void operator=(const vtkMapper2D&); // Not implemented. 00053 }; 00054 00055 #endif 00056 00057 00058