VTK  9.4.20241219
vtkMapperNode.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 vtkMapperNode_h
14#define vtkMapperNode_h
15
16#include "vtkRenderingSceneGraphModule.h" // For export macro
17#include "vtkViewNode.h"
18
19#include <vector> //for results
20
21VTK_ABI_NAMESPACE_BEGIN
23class vtkDataSet;
24class vtkMapper;
25class vtkPolyData;
26
27class VTKRENDERINGSCENEGRAPH_EXPORT vtkMapperNode : public vtkViewNode
28{
29public:
30 static vtkMapperNode* New();
31 vtkTypeMacro(vtkMapperNode, vtkViewNode);
32 void PrintSelf(ostream& os, vtkIndent indent) override;
33
34protected:
36 ~vtkMapperNode() override;
37
39
40private:
41 vtkMapperNode(const vtkMapperNode&) = delete;
42 void operator=(const vtkMapperNode&) = delete;
43};
44
45VTK_ABI_NAMESPACE_END
46#endif
Abstract superclass for all arrays.
abstract class to specify dataset behavior
Definition vtkDataSet.h:165
a simple class to control print indentation
Definition vtkIndent.h:108
vtkViewNode specialized for vtkMappers
vtkAbstractArray * GetArrayToProcess(vtkDataSet *input, int &cellFlag)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkMapperNode() override
static vtkMapperNode * New()
abstract class specifies interface to map data to graphics primitives
Definition vtkMapper.h:137
concrete dataset represents vertices, lines, polygons, and triangle strips
a node within a VTK scene graph
Definition vtkViewNode.h:31