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

dox/Rendering/vtkOpenGLVolumeProVG500Mapper.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkOpenGLVolumeProVG500Mapper.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 =========================================================================*/ 00046 #ifndef __vtkOpenGLVolumeProVG500Mapper_h 00047 #define __vtkOpenGLVolumeProVG500Mapper_h 00048 00049 #include "vtkVolumeProVG500Mapper.h" 00050 00051 class VTK_VOLUMEPRO_EXPORT vtkOpenGLVolumeProVG500Mapper : public vtkVolumeProVG500Mapper 00052 { 00053 public: 00054 vtkTypeRevisionMacro(vtkOpenGLVolumeProVG500Mapper,vtkVolumeProVG500Mapper); 00055 static vtkOpenGLVolumeProVG500Mapper *New(); 00056 virtual void PrintSelf(ostream& os, vtkIndent indent); 00057 00058 protected: 00059 vtkOpenGLVolumeProVG500Mapper() {}; 00060 ~vtkOpenGLVolumeProVG500Mapper() {}; 00061 00062 // Render the hexagon returned by the hardware to the screen. 00063 void RenderHexagon( vtkRenderer *ren, 00064 vtkVolume *vol, 00065 VLIPixel *basePlane, 00066 int size[2], 00067 VLIVector3D hexagon[6], 00068 VLIVector2D textureCoords[6] ); 00069 private: 00070 vtkOpenGLVolumeProVG500Mapper(const vtkOpenGLVolumeProVG500Mapper&); // Not implemented. 00071 void operator=(const vtkOpenGLVolumeProVG500Mapper&); // Not implemented. 00072 }; 00073 00074 00075 #endif 00076 00077 00078