vtkMesaVolumeRayCastMapper.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
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&);
00060 void operator=(const vtkMesaVolumeRayCastMapper&);
00061 };
00062
00063 #endif
00064