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