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