VTK  9.4.20241103
vtkAnariVolumeInterface.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
15#ifndef vtkAnariVolumeInterface_h
16#define vtkAnariVolumeInterface_h
17
18#include "vtkRenderingVolumeModule.h" // For export macro
19#include "vtkVolumeMapper.h"
20
21VTK_ABI_NAMESPACE_BEGIN
22
23class vtkRenderer;
24class vtkVolume;
25
26class VTKRENDERINGVOLUME_EXPORT vtkAnariVolumeInterface : public vtkVolumeMapper
27{
28public:
31 void PrintSelf(ostream& os, vtkIndent indent) override;
32
36 void Render(vtkRenderer*, vtkVolume*) override;
37
38protected:
40 ~vtkAnariVolumeInterface() override = default;
41
42private:
44 void operator=(const vtkAnariVolumeInterface&) = delete;
45};
46
47VTK_ABI_NAMESPACE_END
48#endif
Removes link dependence on optional ANARI module.
~vtkAnariVolumeInterface() override=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkAnariVolumeInterface * New()
vtkAnariVolumeInterface()=default
void Render(vtkRenderer *, vtkVolume *) override
Overridden to warn about lack of ANARI if not overridden.
a simple class to control print indentation
Definition vtkIndent.h:108
abstract specification for renderers
Abstract class for a volume mapper.
represents a volume (data & properties) in a rendered scene
Definition vtkVolume.h:130