00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkMesaVolumeRayCastMapper.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 =========================================================================*/ 00015 00027 #ifndef __vtkMesaVolumeRayCastMapper_h 00028 #define __vtkMesaVolumeRayCastMapper_h 00029 00030 #include "vtkVolumeRayCastMapper.h" 00031 00032 00033 class VTK_RENDERING_EXPORT vtkMesaVolumeRayCastMapper : public vtkVolumeRayCastMapper 00034 { 00035 public: 00036 static vtkMesaVolumeRayCastMapper *New(); 00037 vtkTypeRevisionMacro(vtkMesaVolumeRayCastMapper,vtkVolumeRayCastMapper); 00038 virtual void PrintSelf(ostream& os, vtkIndent indent); 00039 00040 protected: 00041 vtkMesaVolumeRayCastMapper(); 00042 ~vtkMesaVolumeRayCastMapper(); 00043 00044 void RenderTexture( vtkVolume *vol, vtkRenderer *ren); 00045 00046 private: 00047 vtkMesaVolumeRayCastMapper(const vtkMesaVolumeRayCastMapper&); // Not implemented. 00048 void operator=(const vtkMesaVolumeRayCastMapper&); // Not implemented. 00049 }; 00050 00051 #endif 00052