VTK  9.3.20240328
vtkOSPRayVolumeInterface.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
12 #ifndef vtkOSPRayVolumeInterface_h
13 #define vtkOSPRayVolumeInterface_h
14 
15 #include "vtkRenderingVolumeModule.h" // For export macro
16 #include "vtkVolumeMapper.h"
17 
18 VTK_ABI_NAMESPACE_BEGIN
19 class vtkRenderer;
20 class vtkVolume;
21 
22 class VTKRENDERINGVOLUME_EXPORT vtkOSPRayVolumeInterface : public vtkVolumeMapper
23 {
24 public:
27  void PrintSelf(ostream& os, vtkIndent indent) override;
28 
32  void Render(vtkRenderer*, vtkVolume*) override;
33 
34 protected:
37 
38 private:
40  void operator=(const vtkOSPRayVolumeInterface&) = delete;
41 };
42 
43 VTK_ABI_NAMESPACE_END
44 #endif
a simple class to control print indentation
Definition: vtkIndent.h:108
Removes link dependence on optional ospray module.
~vtkOSPRayVolumeInterface() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkOSPRayVolumeInterface * New()
void Render(vtkRenderer *, vtkVolume *) override
Overridden to warn about lack of OSPRay if not overridden.
abstract specification for renderers
Definition: vtkRenderer.h:171
Abstract class for a volume mapper.
represents a volume (data & properties) in a rendered scene
Definition: vtkVolume.h:119