dox/Rendering/vtkMesaVolumeRayCastMapper.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
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&);
00048
void operator=(
const vtkMesaVolumeRayCastMapper&);
00049 };
00050
00051
#endif
00052