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.
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkHierarchicalPolyDataMapper.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 vtkHierarchicalPolyDataMapper
|
|
* @brief a class that renders hierarchical polygonal data
|
|
*
|
|
* Legacy class. Use vtkCompositePolyDataMapper instead.
|
|
*
|
|
* @sa
|
|
* vtkPolyDataMapper
|
|
*/
|
|
|
|
#ifndef vtkHierarchicalPolyDataMapper_h
|
|
#define vtkHierarchicalPolyDataMapper_h
|
|
|
|
#include "vtkCompositePolyDataMapper.h"
|
|
#include "vtkRenderingCoreModule.h" // For export macro
|
|
|
|
class VTKRENDERINGCORE_EXPORT vtkHierarchicalPolyDataMapper : public vtkCompositePolyDataMapper
|
|
{
|
|
|
|
public:
|
|
static vtkHierarchicalPolyDataMapper* New();
|
|
vtkTypeMacro(vtkHierarchicalPolyDataMapper, vtkCompositePolyDataMapper);
|
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
|
|
|
protected:
|
|
vtkHierarchicalPolyDataMapper();
|
|
~vtkHierarchicalPolyDataMapper() override;
|
|
|
|
private:
|
|
vtkHierarchicalPolyDataMapper(const vtkHierarchicalPolyDataMapper&) = delete;
|
|
void operator=(const vtkHierarchicalPolyDataMapper&) = delete;
|
|
};
|
|
|
|
#endif
|