Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound 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   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 =========================================================================*/
00040 #ifndef __vtkMapper2D_h
00041 #define __vtkMapper2D_h
00042 
00043 #include "vtkAbstractMapper.h"
00044 
00045 class vtkViewport;
00046 class vtkActor2D;
00047 
00048 class VTK_COMMON_EXPORT vtkMapper2D : public vtkAbstractMapper
00049 {
00050 public:
00051   vtkTypeRevisionMacro(vtkMapper2D,vtkAbstractMapper);
00052   void PrintSelf(ostream& os, vtkIndent indent);
00053   
00054   virtual void RenderOverlay(vtkViewport*, vtkActor2D*) {};
00055   virtual void RenderOpaqueGeometry(vtkViewport*, vtkActor2D*) {};
00056   virtual void RenderTranslucentGeometry(vtkViewport*, vtkActor2D*) {};
00057 
00058 protected:
00059   vtkMapper2D() {};
00060   ~vtkMapper2D() {};
00061 
00062 private:
00063   vtkMapper2D(const vtkMapper2D&);  // Not implemented.
00064   void operator=(const vtkMapper2D&);  // Not implemented.
00065 };
00066 
00067 #endif
00068 
00069 
00070