VTK  9.3.1
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:
25  static vtkOSPRayVolumeInterface* New();
27  void PrintSelf(ostream& os, vtkIndent indent) override;
28 
32  void Render(vtkRenderer*, vtkVolume*) override;
33 
34 protected:
36  ~vtkOSPRayVolumeInterface() override;
37 
38 private:
40  void operator=(const vtkOSPRayVolumeInterface&) = delete;
41 };
42 
43 VTK_ABI_NAMESPACE_END
44 #endif
represents a volume (data & properties) in a rendered scene
Definition: vtkVolume.h:39
Abstract class for a volume mapper.
abstract specification for renderers
Definition: vtkRenderer.h:61
void Render(vtkRenderer *ren, vtkVolume *vol) override=0
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THIS METHOD OUTSIDE OF THE RENDERI...
a simple class to control print indentation
Definition: vtkIndent.h:28
Removes link dependence on optional ospray module.
static vtkAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.