VTK
dox/VolumeRendering/vtkUnstructuredGridVolumeRayCastFunction.h
Go to the documentation of this file.
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 "vtkObject.h"
00034 
00035 class vtkRenderer;
00036 class vtkVolume;
00037 class vtkUnstructuredGridVolumeRayCastIterator;
00038 
00039 class VTK_VOLUMERENDERING_EXPORT vtkUnstructuredGridVolumeRayCastFunction : public vtkObject
00040 {
00041 public:
00042   vtkTypeMacro(vtkUnstructuredGridVolumeRayCastFunction,vtkObject);
00043   virtual void PrintSelf(ostream& os, vtkIndent indent);
00044 
00045 //BTX
00046   virtual void Initialize( vtkRenderer *ren, vtkVolume   *vol )=0;
00047   
00048   virtual void Finalize( )=0;
00049 
00051 
00054   virtual vtkUnstructuredGridVolumeRayCastIterator *NewIterator() = 0;
00055 //ETX
00057 
00058 
00059 protected:
00060   vtkUnstructuredGridVolumeRayCastFunction() {};
00061   ~vtkUnstructuredGridVolumeRayCastFunction() {};
00062 
00063 private:
00064   vtkUnstructuredGridVolumeRayCastFunction(const vtkUnstructuredGridVolumeRayCastFunction&);  // Not implemented.
00065   void operator=(const vtkUnstructuredGridVolumeRayCastFunction&);  // Not implemented.
00066 };
00067 
00068 #endif
00069 
00070 
00071 
00072 
00073 
00074 
00075