VTK  9.3.20240328
vtkActorNode.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 vtkActorNode_h
16 #define vtkActorNode_h
17 
18 #include "vtkRenderingSceneGraphModule.h" // For export macro
19 #include "vtkViewNode.h"
20 
21 VTK_ABI_NAMESPACE_BEGIN
22 class VTKRENDERINGSCENEGRAPH_EXPORT vtkActorNode : public vtkViewNode
23 {
24 public:
25  static vtkActorNode* New();
26  vtkTypeMacro(vtkActorNode, vtkViewNode);
27  void PrintSelf(ostream& os, vtkIndent indent) override;
28 
32  void Build(bool prepass) override;
33 
34 protected:
36  ~vtkActorNode() override;
37 
38 private:
39  vtkActorNode(const vtkActorNode&) = delete;
40  void operator=(const vtkActorNode&) = delete;
41 };
42 
43 VTK_ABI_NAMESPACE_END
44 #endif
vtkViewNode specialized for vtkActors
Definition: vtkActorNode.h:23
static vtkActorNode * New()
void Build(bool prepass) override
Build containers for our child nodes.
~vtkActorNode() override
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:108
a node within a VTK scene graph
Definition: vtkViewNode.h:31