Rendering/vtkOpenGLLight.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00038 #ifndef __vtkOpenGLLight_h
00039 #define __vtkOpenGLLight_h
00040
00041 #include "vtkLight.h"
00042
00043 class vtkOpenGLRenderer;
00044
00045 class VTK_RENDERING_EXPORT vtkOpenGLLight : public vtkLight
00046 {
00047 public:
00048 static vtkOpenGLLight *New();
00049 vtkTypeRevisionMacro(vtkOpenGLLight,vtkLight);
00050 virtual void PrintSelf(ostream& os, vtkIndent indent);
00051
00053 void Render(vtkRenderer *ren,int light_index);
00054
00055 protected:
00056 vtkOpenGLLight() {};
00057 ~vtkOpenGLLight() {};
00058 private:
00059 vtkOpenGLLight(const vtkOpenGLLight&);
00060 void operator=(const vtkOpenGLLight&);
00061 };
00062
00063 #endif
00064