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

vtkOpenGLVolumeShearWarpMapper.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkOpenGLVolumeShearWarpMapper.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 =========================================================================*/
00061 #ifndef __vtkOpenGLVolumeShearWarpMapper_h
00062 #define __vtkOpenGLVolumeShearWarpMapper_h
00063 
00064 #include "vtkVolumeShearWarpMapper.h"
00065 
00066 class VTK_RENDERING_EXPORT vtkOpenGLVolumeShearWarpMapper : public vtkVolumeShearWarpMapper
00067 {
00068 public:
00069 //  vtkTypeMacro(vtkOpenGLVolumeShearWarpMapper,vtkVolumeShearWarpMapper);
00070   void PrintSelf(ostream& os, vtkIndent indent);
00071 
00072   static vtkOpenGLVolumeShearWarpMapper *New();
00073   vtkTypeRevisionMacro(vtkOpenGLVolumeShearWarpMapper,vtkVolumeShearWarpMapper);
00074 
00075 protected:
00076   vtkOpenGLVolumeShearWarpMapper();
00077   ~vtkOpenGLVolumeShearWarpMapper();
00078 
00079   virtual void RenderTexture(vtkRenderer *ren, vtkVolume *vol);
00080 
00081 private:
00082   vtkOpenGLVolumeShearWarpMapper(const vtkOpenGLVolumeShearWarpMapper&);  // Not implemented.
00083   void operator=(const vtkOpenGLVolumeShearWarpMapper&);  // Not implemented.
00084 };
00085 
00086 
00087 #endif
00088 
00089