00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkFixedPointVolumeRayCastCompositeShadeHelper.h,v $ 00005 Language: C++ 00006 00007 Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 00008 All rights reserved. 00009 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00010 00011 This software is distributed WITHOUT ANY WARRANTY; without even 00012 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00013 PURPOSE. See the above copyright notice for more information. 00014 00015 =========================================================================*/ 00016 00032 #ifndef __vtkFixedPointVolumeRayCastCompositeShadeHelper_h 00033 #define __vtkFixedPointVolumeRayCastCompositeShadeHelper_h 00034 00035 #include "vtkFixedPointVolumeRayCastHelper.h" 00036 00037 class vtkFixedPointVolumeRayCastMapper; 00038 class vtkVolume; 00039 00040 class VTK_VOLUMERENDERING_EXPORT vtkFixedPointVolumeRayCastCompositeShadeHelper : public vtkFixedPointVolumeRayCastHelper 00041 { 00042 public: 00043 static vtkFixedPointVolumeRayCastCompositeShadeHelper *New(); 00044 vtkTypeRevisionMacro(vtkFixedPointVolumeRayCastCompositeShadeHelper,vtkFixedPointVolumeRayCastHelper); 00045 void PrintSelf( ostream& os, vtkIndent indent ); 00046 00047 virtual void GenerateImage( int threadID, 00048 int threadCount, 00049 vtkVolume *vol, 00050 vtkFixedPointVolumeRayCastMapper *mapper); 00051 00052 protected: 00053 vtkFixedPointVolumeRayCastCompositeShadeHelper(); 00054 ~vtkFixedPointVolumeRayCastCompositeShadeHelper(); 00055 00056 private: 00057 vtkFixedPointVolumeRayCastCompositeShadeHelper(const vtkFixedPointVolumeRayCastCompositeShadeHelper&); // Not implemented. 00058 void operator=(const vtkFixedPointVolumeRayCastCompositeShadeHelper&); // Not implemented. 00059 }; 00060 00061 #endif 00062 00063