VTK
vtkLightingPainter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkLightingPainter.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=========================================================================*/
21#ifndef vtkLightingPainter_h
22#define vtkLightingPainter_h
23
24#include "vtkRenderingOpenGLModule.h" // For export macro
25#include "vtkPolyDataPainter.h"
26
27class VTKRENDERINGOPENGL_EXPORT vtkLightingPainter : public vtkPolyDataPainter
28{
29public:
32 void PrintSelf(ostream& os, vtkIndent indent);
33
34protected:
37
38private:
39 vtkLightingPainter(const vtkLightingPainter&) VTK_DELETE_FUNCTION;
40 void operator=(const vtkLightingPainter&) VTK_DELETE_FUNCTION;
41};
42
43#endif
a simple class to control print indentation
Definition: vtkIndent.h:40
abstract class defining interface for painter that can handle lightin.
static vtkLightingPainter * New()
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
Abstract class for drawing poly data.