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