VTK  9.3.1
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:
32  vtkVolumeNode();
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
virtual void Build(bool)
Builds myself.
Definition: vtkViewNode.h:46
vtkViewNode specialized for vtkActors
Definition: vtkVolumeNode.h:19
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:28
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
a node within a VTK scene graph
Definition: vtkViewNode.h:30