VTK  9.4.20241118
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
18VTK_ABI_NAMESPACE_BEGIN
19class vtkRenderer;
20class vtkVolume;
21
22class VTKRENDERINGVOLUME_EXPORT vtkOSPRayVolumeInterface : public vtkVolumeMapper
23{
24public:
27 void PrintSelf(ostream& os, vtkIndent indent) override;
28
32 void Render(vtkRenderer*, vtkVolume*) override;
33
34protected:
37
38private:
40 void operator=(const vtkOSPRayVolumeInterface&) = delete;
41};
42
43VTK_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.
void Render(vtkRenderer *, vtkVolume *) override
Overridden to warn about lack of OSPRay if not overridden.
static vtkOSPRayVolumeInterface * New()
abstract specification for renderers
Abstract class for a volume mapper.
represents a volume (data & properties) in a rendered scene
Definition vtkVolume.h:130