VTK
vtkMesaImageMapper.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMesaImageMapper.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
25 #ifndef __vtkMesaImageMapper_h
26 #define __vtkMesaImageMapper_h
27 
28 
29 #include "vtkImageMapper.h"
30 class vtkActor2D;
31 
32 
34 {
35 public:
36  static vtkMesaImageMapper *New();
38  virtual void PrintSelf(ostream& os, vtkIndent indent);
39 
41 
42  void RenderOpaqueGeometry(vtkViewport* viewport, vtkActor2D* actor) {
43  this->RenderStart(viewport,actor);}
45 
47 
49  void RenderData(vtkViewport* viewport, vtkImageData* data,
50  vtkActor2D* actor);
52 
53 protected:
56 
57 private:
58  vtkMesaImageMapper(const vtkMesaImageMapper&); // Not implemented.
59  void operator=(const vtkMesaImageMapper&); // Not implemented.
60 };
61 
62 
63 #endif
64 
65 
66 
67 
68 
69 
70 
71 
72