dox/Hybrid/vtkRIBLight.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00028
#ifndef __vtkRIBLight_h
00029
#define __vtkRIBLight_h
00030
00031
#include "vtkLight.h"
00032
00033
class vtkRIBRenderer;
00034
00035 class VTK_HYBRID_EXPORT vtkRIBLight :
public vtkLight
00036 {
00037
public:
00038
static vtkRIBLight *
New();
00039 vtkTypeRevisionMacro(vtkRIBLight,
vtkLight);
00040
void PrintSelf(ostream& os,
vtkIndent indent);
00041
00042 vtkBooleanMacro(Shadows,
int);
00043 vtkSetMacro(Shadows,
int);
00044 vtkGetMacro(Shadows,
int);
00045
00046
void Render(
vtkRenderer *ren,
int index);
00047
protected:
00048 vtkRIBLight();
00049 ~vtkRIBLight();
00050
00051 vtkLight *Light;
00052 int Shadows;
00053
private:
00054 vtkRIBLight(
const vtkRIBLight&);
00055
void operator=(
const vtkRIBLight&);
00056 };
00057
00058
#endif