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

dox/Rendering/vtkMesaImageMapper.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkMesaImageMapper.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 =========================================================================*/ 00029 #ifndef __vtkMesaImageMapper_h 00030 #define __vtkMesaImageMapper_h 00031 00032 00033 #include "vtkImageMapper.h" 00034 class vtkActor2D; 00035 00036 00037 class VTK_RENDERING_EXPORT vtkMesaImageMapper : public vtkImageMapper 00038 { 00039 public: 00040 static vtkMesaImageMapper *New(); 00041 vtkTypeRevisionMacro(vtkMesaImageMapper,vtkImageMapper); 00042 virtual void PrintSelf(ostream& os, vtkIndent indent); 00043 00045 00046 void RenderOpaqueGeometry(vtkViewport* viewport, vtkActor2D* actor) { 00047 this->RenderStart(viewport,actor);} 00049 00051 00053 void RenderData(vtkViewport* viewport, vtkImageData* data, 00054 vtkActor2D* actor); 00056 00057 protected: 00058 vtkMesaImageMapper(); 00059 ~vtkMesaImageMapper(); 00060 00061 private: 00062 vtkMesaImageMapper(const vtkMesaImageMapper&); // Not implemented. 00063 void operator=(const vtkMesaImageMapper&); // Not implemented. 00064 }; 00065 00066 00067 #endif 00068 00069 00070 00071 00072 00073 00074 00075 00076