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 =========================================================================*/ 00035 #ifndef __vtkMapper2D_h 00036 #define __vtkMapper2D_h 00037 00038 #include "vtkAbstractMapper.h" 00039 00040 class vtkViewport; 00041 class vtkActor2D; 00042 00043 class VTK_FILTERING_EXPORT vtkMapper2D : public vtkAbstractMapper 00044 { 00045 public: 00046 vtkTypeRevisionMacro(vtkMapper2D,vtkAbstractMapper); 00047 void PrintSelf(ostream& os, vtkIndent indent); 00048 00049 virtual void RenderOverlay(vtkViewport*, vtkActor2D*) {}; 00050 virtual void RenderOpaqueGeometry(vtkViewport*, vtkActor2D*) {}; 00051 virtual void RenderTranslucentGeometry(vtkViewport*, vtkActor2D*) {}; 00052 00053 protected: 00054 vtkMapper2D() {}; 00055 ~vtkMapper2D() {}; 00056 00057 private: 00058 vtkMapper2D(const vtkMapper2D&); // Not implemented. 00059 void operator=(const vtkMapper2D&); // Not implemented. 00060 }; 00061 00062 #endif 00063 00064 00065