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 
27 class VTKRENDERINGOPENGL_EXPORT vtkLightingPainter : public vtkPolyDataPainter
28 {
29 public:
30  static vtkLightingPainter* New();
32  void PrintSelf(ostream& os, vtkIndent indent);
33 
34 protected:
37 
38 private:
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:39
abstract class defining interface for painter that can handle lightin.
virtual void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
Abstract class for drawing poly data.