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

Common/vtkMapper2D.h

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