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.
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkLightingPainter.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 vtkLightingPainter
|
|
* @brief abstract class defining interface for painter
|
|
* that can handle lightin.
|
|
*/
|
|
|
|
#ifndef vtkLightingPainter_h
|
|
#define vtkLightingPainter_h
|
|
|
|
#include "vtkRenderingOpenGLModule.h" // For export macro
|
|
#include "vtkPolyDataPainter.h"
|
|
|
|
class VTKRENDERINGOPENGL_EXPORT vtkLightingPainter : public vtkPolyDataPainter
|
|
{
|
|
public:
|
|
static vtkLightingPainter* New();
|
|
vtkTypeMacro(vtkLightingPainter, vtkPolyDataPainter);
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
|
|
|
protected:
|
|
vtkLightingPainter();
|
|
~vtkLightingPainter();
|
|
|
|
private:
|
|
vtkLightingPainter(const vtkLightingPainter&) VTK_DELETE_FUNCTION;
|
|
void operator=(const vtkLightingPainter&) VTK_DELETE_FUNCTION;
|
|
};
|
|
|
|
#endif
|