VTK  9.1.0
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
28#ifndef vtkUnstructuredGridVolumeRayCastFunction_h
29#define vtkUnstructuredGridVolumeRayCastFunction_h
30
31#include "vtkObject.h"
32#include "vtkRenderingVolumeModule.h" // For export macro
33
34class vtkRenderer;
35class vtkVolume;
37
38class VTKRENDERINGVOLUME_EXPORT vtkUnstructuredGridVolumeRayCastFunction : public vtkObject
39{
40public:
42 void PrintSelf(ostream& os, vtkIndent indent) override;
43
44 virtual void Initialize(vtkRenderer* ren, vtkVolume* vol) = 0;
45
46 virtual void Finalize() = 0;
47
55
56protected:
59
60private:
63 void operator=(const vtkUnstructuredGridVolumeRayCastFunction&) = delete;
64};
65
66#endif
a simple class to control print indentation
Definition: vtkIndent.h:113
abstract base class for most VTK objects
Definition: vtkObject.h:73
abstract specification for renderers
Definition: vtkRenderer.h:173
virtual vtkUnstructuredGridVolumeRayCastIterator * NewIterator()=0
Returns a new object that will iterate over all the intersections of a ray with the cells of the inpu...
virtual void Initialize(vtkRenderer *ren, vtkVolume *vol)=0
~vtkUnstructuredGridVolumeRayCastFunction() override=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkUnstructuredGridVolumeRayCastIterator is a superclass for iterating over the intersections of a vi...
represents a volume (data & properties) in a rendered scene
Definition: vtkVolume.h:134
#define VTK_NEWINSTANCE