You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkMapperNode.h
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notice for more information.
|
|
|
|
=========================================================================*/
|
|
/**
|
|
* @class vtkMapperNode
|
|
* @brief vtkViewNode specialized for vtkMappers
|
|
*
|
|
* State storage and graph traversal for vtkMapper
|
|
*/
|
|
|
|
#ifndef vtkMapperNode_h
|
|
#define vtkMapperNode_h
|
|
|
|
#include "vtkRenderingSceneGraphModule.h" // For export macro
|
|
#include "vtkViewNode.h"
|
|
|
|
#include <vector> //for results
|
|
|
|
class vtkAbstractArray;
|
|
class vtkDataSet;
|
|
class vtkMapper;
|
|
class vtkPolyData;
|
|
|
|
class VTKRENDERINGSCENEGRAPH_EXPORT vtkMapperNode : public vtkViewNode
|
|
{
|
|
public:
|
|
static vtkMapperNode* New();
|
|
vtkTypeMacro(vtkMapperNode, vtkViewNode);
|
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
|
|
|
protected:
|
|
vtkMapperNode();
|
|
~vtkMapperNode() override;
|
|
|
|
vtkAbstractArray* GetArrayToProcess(vtkDataSet* input, int& association);
|
|
|
|
private:
|
|
vtkMapperNode(const vtkMapperNode&) = delete;
|
|
void operator=(const vtkMapperNode&) = delete;
|
|
};
|
|
|
|
#endif
|