VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkUnstructuredGridVolumeRayCastFunction.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 =========================================================================*/ 00015 00030 #ifndef vtkUnstructuredGridVolumeRayCastFunction_h 00031 #define vtkUnstructuredGridVolumeRayCastFunction_h 00032 00033 #include "vtkRenderingVolumeModule.h" // For export macro 00034 #include "vtkObject.h" 00035 00036 class vtkRenderer; 00037 class vtkVolume; 00038 class vtkUnstructuredGridVolumeRayCastIterator; 00039 00040 class VTKRENDERINGVOLUME_EXPORT vtkUnstructuredGridVolumeRayCastFunction : public vtkObject 00041 { 00042 public: 00043 vtkTypeMacro(vtkUnstructuredGridVolumeRayCastFunction,vtkObject); 00044 virtual void PrintSelf(ostream& os, vtkIndent indent); 00045 00046 //BTX 00047 virtual void Initialize( vtkRenderer *ren, vtkVolume *vol )=0; 00048 00049 virtual void Finalize( )=0; 00050 00052 00055 virtual vtkUnstructuredGridVolumeRayCastIterator *NewIterator() = 0; 00056 //ETX 00058 00059 00060 protected: 00061 vtkUnstructuredGridVolumeRayCastFunction() {} 00062 ~vtkUnstructuredGridVolumeRayCastFunction() {} 00063 00064 private: 00065 vtkUnstructuredGridVolumeRayCastFunction(const vtkUnstructuredGridVolumeRayCastFunction&); // Not implemented. 00066 void operator=(const vtkUnstructuredGridVolumeRayCastFunction&); // Not implemented. 00067 }; 00068 00069 #endif 00070 00071 00072 00073 00074 00075 00076