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.
53 lines
1.6 KiB
C++
53 lines
1.6 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkVolumeMapperNode.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 vtkVolumeMapperNode
|
|
* @brief vtkViewNode specialized for vtkVolumeMappers
|
|
*
|
|
* State storage and graph traversal for vtkVolumeMapper/PolyDataMapper and Property
|
|
* Made a choice to merge PolyDataMapper, PolyDataMapper and property together. If there
|
|
* is a compelling reason to separate them we can.
|
|
*/
|
|
|
|
#ifndef vtkVolumeMapperNode_h
|
|
#define vtkVolumeMapperNode_h
|
|
|
|
#include "vtkMapperNode.h"
|
|
#include "vtkRenderingSceneGraphModule.h" // For export macro
|
|
|
|
#include <vector> //for results
|
|
|
|
class vtkActor;
|
|
class vtkVolumeMapper;
|
|
class vtkPolyData;
|
|
|
|
class VTKRENDERINGSCENEGRAPH_EXPORT vtkVolumeMapperNode : public vtkMapperNode
|
|
{
|
|
public:
|
|
static vtkVolumeMapperNode* New();
|
|
vtkTypeMacro(vtkVolumeMapperNode, vtkMapperNode);
|
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
|
|
|
protected:
|
|
vtkVolumeMapperNode();
|
|
~vtkVolumeMapperNode() override;
|
|
|
|
private:
|
|
vtkVolumeMapperNode(const vtkVolumeMapperNode&) = delete;
|
|
void operator=(const vtkVolumeMapperNode&) = delete;
|
|
};
|
|
|
|
#endif
|