VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkFixedPointVolumeRayCastMIPHelper.h 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 =========================================================================*/ 00027 #ifndef vtkFixedPointVolumeRayCastMIPHelper_h 00028 #define vtkFixedPointVolumeRayCastMIPHelper_h 00029 00030 #include "vtkRenderingVolumeModule.h" // For export macro 00031 #include "vtkFixedPointVolumeRayCastHelper.h" 00032 00033 class vtkFixedPointVolumeRayCastMapper; 00034 class vtkVolume; 00035 00036 class VTKRENDERINGVOLUME_EXPORT vtkFixedPointVolumeRayCastMIPHelper : public vtkFixedPointVolumeRayCastHelper 00037 { 00038 public: 00039 static vtkFixedPointVolumeRayCastMIPHelper *New(); 00040 vtkTypeMacro(vtkFixedPointVolumeRayCastMIPHelper,vtkFixedPointVolumeRayCastHelper); 00041 void PrintSelf( ostream& os, vtkIndent indent ); 00042 00043 virtual void GenerateImage( int threadID, 00044 int threadCount, 00045 vtkVolume *vol, 00046 vtkFixedPointVolumeRayCastMapper *mapper); 00047 00048 protected: 00049 vtkFixedPointVolumeRayCastMIPHelper(); 00050 ~vtkFixedPointVolumeRayCastMIPHelper(); 00051 00052 private: 00053 vtkFixedPointVolumeRayCastMIPHelper(const vtkFixedPointVolumeRayCastMIPHelper&); // Not implemented. 00054 void operator=(const vtkFixedPointVolumeRayCastMIPHelper&); // Not implemented. 00055 }; 00056 00057 #endif 00058 00059 00060