VTK  9.4.20241117
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
21VTK_ABI_NAMESPACE_BEGIN
22class VTKRENDERINGSCENEGRAPH_EXPORT vtkActorNode : public vtkViewNode
23{
24public:
25 static vtkActorNode* New();
26 vtkTypeMacro(vtkActorNode, vtkViewNode);
27 void PrintSelf(ostream& os, vtkIndent indent) override;
28
32 void Build(bool prepass) override;
33
34protected:
36 ~vtkActorNode() override;
37
38private:
39 vtkActorNode(const vtkActorNode&) = delete;
40 void operator=(const vtkActorNode&) = delete;
41};
42
43VTK_ABI_NAMESPACE_END
44#endif
vtkViewNode specialized for vtkActors
void Build(bool prepass) override
Build containers for our child nodes.
~vtkActorNode() override
static vtkActorNode * New()
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