VTK  9.0.1
vtkMapperNode.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMapperNode.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
22 #ifndef vtkMapperNode_h
23 #define vtkMapperNode_h
24 
25 #include "vtkRenderingSceneGraphModule.h" // For export macro
26 #include "vtkViewNode.h"
27 
28 #include <vector> //for results
29 
30 class vtkAbstractArray;
31 class vtkDataSet;
32 class vtkMapper;
33 class vtkPolyData;
34 
35 class VTKRENDERINGSCENEGRAPH_EXPORT vtkMapperNode : public vtkViewNode
36 {
37 public:
38  static vtkMapperNode* New();
39  vtkTypeMacro(vtkMapperNode, vtkViewNode);
40  void PrintSelf(ostream& os, vtkIndent indent) override;
41 
42 protected:
43  vtkMapperNode();
44  ~vtkMapperNode() override;
45 
46  vtkAbstractArray* GetArrayToProcess(vtkDataSet* input, int& association);
47 
48 private:
49  vtkMapperNode(const vtkMapperNode&) = delete;
50  void operator=(const vtkMapperNode&) = delete;
51 };
52 
53 #endif
vtkObject::New
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
vtkMapperNode
vtkViewNode specialized for vtkMappers
Definition: vtkMapperNode.h:35
vtkViewNode.h
vtkViewNode::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkMapper
abstract class specifies interface to map data to graphics primitives
Definition: vtkMapper.h:80
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkViewNode
a node within a VTK scene graph
Definition: vtkViewNode.h:37
vtkDataSet
abstract class to specify dataset behavior
Definition: vtkDataSet.h:56
vtkAbstractArray
Abstract superclass for all arrays.
Definition: vtkAbstractArray.h:75
vtkPolyData
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:84