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

vtkMesaVolumeRayCastMapper.h

Go to the documentation of this file.
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 
00039 #ifndef __vtkMesaVolumeRayCastMapper_h
00040 #define __vtkMesaVolumeRayCastMapper_h
00041 
00042 #include "vtkVolumeRayCastMapper.h"
00043 
00044 
00045 class VTK_RENDERING_EXPORT vtkMesaVolumeRayCastMapper : public vtkVolumeRayCastMapper
00046 {
00047 public:
00048   static vtkMesaVolumeRayCastMapper *New();
00049   vtkTypeRevisionMacro(vtkMesaVolumeRayCastMapper,vtkVolumeRayCastMapper);
00050   virtual void PrintSelf(ostream& os, vtkIndent indent);
00051 
00052 protected:
00053   vtkMesaVolumeRayCastMapper();
00054   ~vtkMesaVolumeRayCastMapper();
00055 
00056   void RenderTexture( vtkVolume *vol, vtkRenderer *ren);
00057 
00058 private:
00059   vtkMesaVolumeRayCastMapper(const vtkMesaVolumeRayCastMapper&);  // Not implemented.
00060   void operator=(const vtkMesaVolumeRayCastMapper&);  // Not implemented.
00061 };
00062 
00063 #endif
00064