VTK
vtkUnstructuredGridVolumeRayCastFunction.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkUnstructuredGridVolumeRayCastFunction.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 
30 #ifndef __vtkUnstructuredGridVolumeRayCastFunction_h
31 #define __vtkUnstructuredGridVolumeRayCastFunction_h
32 
33 #include "vtkObject.h"
34 
35 class vtkRenderer;
36 class vtkVolume;
38 
40 {
41 public:
43  virtual void PrintSelf(ostream& os, vtkIndent indent);
44 
45 //BTX
46  virtual void Initialize( vtkRenderer *ren, vtkVolume *vol )=0;
47 
48  virtual void Finalize( )=0;
49 
51 
54  virtual vtkUnstructuredGridVolumeRayCastIterator *NewIterator() = 0;
55 //ETX
57 
58 
59 protected:
62 
63 private:
65  void operator=(const vtkUnstructuredGridVolumeRayCastFunction&); // Not implemented.
66 };
67 
68 #endif
69 
70 
71 
72 
73 
74 
75 
represents a volume (data & properties) in a rendered scene
Definition: vtkVolume.h:48
abstract base class for most VTK objects
Definition: vtkObject.h:60
#define VTK_VOLUMERENDERING_EXPORT
abstract specification for renderers
Definition: vtkRenderer.h:69
virtual void PrintSelf(ostream &os, vtkIndent indent)
a simple class to control print indentation
Definition: vtkIndent.h:37