VTK  9.3.20240328
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 
21 VTK_ABI_NAMESPACE_BEGIN
22 class vtkAbstractArray;
23 class vtkDataSet;
24 class vtkMapper;
25 class vtkPolyData;
26 
27 class VTKRENDERINGSCENEGRAPH_EXPORT vtkMapperNode : public vtkViewNode
28 {
29 public:
30  static vtkMapperNode* New();
31  vtkTypeMacro(vtkMapperNode, vtkViewNode);
32  void PrintSelf(ostream& os, vtkIndent indent) override;
33 
34 protected:
36  ~vtkMapperNode() override;
37 
39 
40 private:
41  vtkMapperNode(const vtkMapperNode&) = delete;
42  void operator=(const vtkMapperNode&) = delete;
43 };
44 
45 VTK_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
Definition: vtkMapperNode.h:28
static vtkMapperNode * New()
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
abstract class specifies interface to map data to graphics primitives
Definition: vtkMapper.h:136
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:180
a node within a VTK scene graph
Definition: vtkViewNode.h:31