VTK  9.3.0
vtkVolumeNode.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 vtkVolumeNode_h
13 #define vtkVolumeNode_h
14 
15 #include "vtkRenderingSceneGraphModule.h" // For export macro
16 #include "vtkViewNode.h"
17 
18 VTK_ABI_NAMESPACE_BEGIN
19 class VTKRENDERINGSCENEGRAPH_EXPORT vtkVolumeNode : public vtkViewNode
20 {
21 public:
22  static vtkVolumeNode* New();
23  vtkTypeMacro(vtkVolumeNode, vtkViewNode);
24  void PrintSelf(ostream& os, vtkIndent indent) override;
25 
29  void Build(bool prepass) override;
30 
31 protected:
33  ~vtkVolumeNode() override;
34 
35 private:
36  vtkVolumeNode(const vtkVolumeNode&) = delete;
37  void operator=(const vtkVolumeNode&) = delete;
38 };
39 
40 VTK_ABI_NAMESPACE_END
41 #endif
a simple class to control print indentation
Definition: vtkIndent.h:29
a node within a VTK scene graph
Definition: vtkViewNode.h:31
vtkViewNode specialized for vtkActors
Definition: vtkVolumeNode.h:20
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkVolumeNode * New()
~vtkVolumeNode() override
void Build(bool prepass) override
Build containers for our child nodes.