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 =========================================================================*/ 00051 #ifndef __vtkOpenGLVolumeShearWarpMapper_h 00052 #define __vtkOpenGLVolumeShearWarpMapper_h 00053 00054 #include "vtkVolumeShearWarpMapper.h" 00055 00056 class VTK_VOLUMERENDERING_EXPORT vtkOpenGLVolumeShearWarpMapper : public vtkVolumeShearWarpMapper 00057 { 00058 public: 00059 // vtkTypeMacro(vtkOpenGLVolumeShearWarpMapper,vtkVolumeShearWarpMapper); 00060 void PrintSelf(ostream& os, vtkIndent indent); 00061 00062 static vtkOpenGLVolumeShearWarpMapper *New(); 00063 vtkTypeRevisionMacro(vtkOpenGLVolumeShearWarpMapper,vtkVolumeShearWarpMapper); 00064 00065 protected: 00066 vtkOpenGLVolumeShearWarpMapper(); 00067 ~vtkOpenGLVolumeShearWarpMapper(); 00068 00069 virtual void RenderTexture(vtkRenderer *ren, vtkVolume *vol); 00070 00071 private: 00072 vtkOpenGLVolumeShearWarpMapper(const vtkOpenGLVolumeShearWarpMapper&); // Not implemented. 00073 void operator=(const vtkOpenGLVolumeShearWarpMapper&); // Not implemented. 00074 }; 00075 00076 00077 #endif 00078 00079