dox/Rendering/vtkRayCastImageDisplayHelper.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00031
#ifndef __vtkRayCastImageDisplayHelper_h
00032
#define __vtkRayCastImageDisplayHelper_h
00033
00034
#include "vtkObject.h"
00035
00036
class vtkVolume;
00037
class vtkRenderer;
00038
00039 class VTK_RENDERING_EXPORT vtkRayCastImageDisplayHelper :
public vtkObject
00040 {
00041
public:
00042
static vtkRayCastImageDisplayHelper *
New();
00043 vtkTypeRevisionMacro(vtkRayCastImageDisplayHelper,
vtkObject);
00044
virtual void PrintSelf(ostream& os,
vtkIndent indent);
00045
00046
virtual void RenderTexture(
vtkVolume *vol,
vtkRenderer *ren,
00047
int imageMemorySize[2],
00048
int imageViewportSize[2],
00049
int imageInUseSize[2],
00050
int imageOrigin[2],
00051
float requestedDepth,
00052
unsigned char *image ) = 0;
00053
00054
protected:
00055 vtkRayCastImageDisplayHelper();
00056 ~vtkRayCastImageDisplayHelper();
00057
00058
private:
00059 vtkRayCastImageDisplayHelper(
const vtkRayCastImageDisplayHelper&);
00060
void operator=(
const vtkRayCastImageDisplayHelper&);
00061 };
00062
00063
#endif
00064