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