Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkUnstructuredGridVolumeRayCastFunction.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkUnstructuredGridVolumeRayCastFunction.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 =========================================================================*/
00015 
00040 #ifndef __vtkUnstructuredGridVolumeRayCastFunction_h
00041 #define __vtkUnstructuredGridVolumeRayCastFunction_h
00042 
00043 #include "vtkObject.h"
00044 
00045 class vtkRenderer;
00046 class vtkVolume;
00047 class vtkUnstructuredGridVolumeRayCastIterator;
00048 
00049 class VTK_RENDERING_EXPORT vtkUnstructuredGridVolumeRayCastFunction : public vtkObject
00050 {
00051 public:
00052   vtkTypeRevisionMacro(vtkUnstructuredGridVolumeRayCastFunction,vtkObject);
00053   virtual void PrintSelf(ostream& os, vtkIndent indent);
00054 
00055 //BTX
00056   virtual void Initialize( vtkRenderer *ren, vtkVolume   *vol )=0;
00057   
00058   virtual void Finalize( )=0;
00059 
00063   virtual vtkUnstructuredGridVolumeRayCastIterator *NewIterator() = 0;
00064 //ETX
00065 
00066 
00067 protected:
00068   vtkUnstructuredGridVolumeRayCastFunction() {};
00069   ~vtkUnstructuredGridVolumeRayCastFunction() {};
00070 
00071 private:
00072   vtkUnstructuredGridVolumeRayCastFunction(const vtkUnstructuredGridVolumeRayCastFunction&);  // Not implemented.
00073   void operator=(const vtkUnstructuredGridVolumeRayCastFunction&);  // Not implemented.
00074 };
00075 
00076 #endif
00077 
00078 
00079 
00080 
00081 
00082 
00083